Nothing
augment.C = function(pobs, Vobs, X, kappa, theta1, r, g.fixed){
n = length(Vobs)
cens = sapply(Vobs, function(x) is.infinite(x[length(x)]))
m = sapply(Vobs, length)
theta0 = 1 - theta1
k = numeric(n)
for(i in 1:n) k[i] = max(cumsum(X[i] > Vobs[[i]]))
p0 <- numeric(n)
p0[] <- NA
p0[!g.fixed] = theta0[!g.fixed] *kappa^(1-cens[!g.fixed]) * (1 - kappa)^{(m-k-1)[!g.fixed]}
p0[((m-k-1)<0) & !g.fixed] = 0
p1 <- numeric(n)
p1[] <- NA
p1[!g.fixed] = theta1[!g.fixed] * kappa^(1-cens[!g.fixed]) * (1-kappa)^{(m-2+r)[!g.fixed]}
psum = apply( cbind(p0, p1), 1, sum )
p1 = p1 / psum
g <- numeric(n)
g[] <- NA
g[!g.fixed] <- rbinom(sum(!g.fixed),1, p1[!g.fixed])
g[g.fixed] <- 1
g
}
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.