R/ratesByAge.r

Defines functions ratesByAge

Documented in ratesByAge

ratesByAge <- function(APCList, age, per, scale=10^3, log.ax="", ann=TRUE, grid=TRUE, ...){

    # with the new Epi version type must be pa if inteval length are not equal
#     if(!(type %in% c("pa", "ca")))
#         stop("Argument type must be either equal to pa or ca")
    type="pa"
  
    np <- nperiod(APCList)
    rates <- epi(APCList)/pyrs(APCList)

    rates <- t(rates)
    rateplot(rates*scale, age=age, per=per, which=type, log.ax=log.ax, ann=ann, 
        grid=grid, ylab=paste("Rates per", format(scale, scientific=FALSE), sep=" "), xlab="Date of event",...)
}

Try the BAPC package in your browser

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

BAPC documentation built on March 23, 2022, 3 p.m.