Nothing
get.cdf.het.berns <-
function(n, j, theta.n, alpha.n)
{
##sort the alphas
alpha.n <- alpha.n[order(alpha.n)]
theta.n <- theta.n[order(alpha.n)]
##call the C code
returnvalue <- .C("cdf",as.integer(n),as.double(j),
as.double(theta.n), as.double(alpha.n),
result=double(1),
PACKAGE="CancerMutationAnalysis")
cdf <- returnvalue$result
cdf
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.