As part of a formula I am computing, I need to compute large b inomial coefficients
This is something like :
choose(1598,999)
but the result from R is just inf. Is there some way to get around that? Or some way to approximate the result in any way? It is just that I am trying to work with a formula which has sample size as n (1598) and another parameter as p (in this casw 999).
So I want to compute
with n->16000
b->1000
c()->w
c()->w1
for (k in 2:(n-1)){
k*(k-1)*chooseZ((n-k),(b-1))->w
c(w1,w)->w1
}
While there is no error the result is wrong:
sum(w1)
Error in sum(w1) : invalid 'type' (raw) of argument
> head(w1)
[1] 01 00 00 00 01 00
You could use the
print
function with the digits specified. Don't know if it'll work for this though.The syntax would be
I think print caps it at 22 digits. Check if this works