R/ppccNormMultiplyCensored.R

ppccNormMultiplyCensored <-
function (x, censored, censoring.side, prob.method, plot.pos.con) 
{
    qqPlot.list <- qqPlotCensored(x = x, censored = censored, 
        censoring.side = censoring.side, prob.method = prob.method, 
        plot.pos.con = plot.pos.con, distribution = "norm", plot.it = FALSE)
    m.tilda <- qqPlot.list$x
    ss.m <- sum(m.tilda^2)
    c.vec <- m.tilda/sqrt(ss.m)
    index <- !qqPlot.list$Censored
    cor(c.vec[index], qqPlot.list$y[index])
}

Try the EnvStats package in your browser

Any scripts or data that you put into this service are public.

EnvStats documentation built on Aug. 22, 2023, 5:09 p.m.