R/sirtcat.R

Defines functions sirtcat

## File Name: sirtcat.R
## File Version: 0.091


sirtcat <- function( label, time0, active )
{
    if (active){
        z0 <- time0
        cat( label, '  ' )
        z1 <- Sys.time()
        print(z1-z0)
        z0 <- z1
        zout <- z0
    } else {
        zout <- NULL
    }
    return(zout)
}

Try the sirt package in your browser

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

sirt documentation built on Aug. 11, 2023, 5:07 p.m.