R/1_cr_classes.R

setClass("CureRate",
    representation(
        cureobs  = "numeric",
        medobs   = "numeric",
        curerx   = "numeric",
        medrx    = "numeric",
        actime   = "vector",
        futime   = "vector",
        info     = "vector",
        crits    = "vector",
        alpha    = "numeric",
        rho      = "numeric",

        acrate   = "numeric",
        probrx   = "numeric",
        numreps  = "integer", 
       
        numobs   = "matrix",
        timept   = "array",
        deaths   = "array",
        testname = "character",
        power    = "array",
        beta     = "matrix",

        indac    =  "integer",
        indfu    =  "integer",
        printflag = "integer"
    ) 
)

Try the CR package in your browser

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

CR documentation built on May 2, 2019, 7:22 a.m.