R/PercentAxis.R

Defines functions PercentAxis

Documented in PercentAxis

#' Percentage-labeled axis.
#' 
#' Use percentages instead of decimals to label the an axis with a probability
#' scale .
#' 
#' 
#' @param x Side of the axis
#' @param at Positions (decimals) at which to label the axis.
#' @param \dots Given to \code{axis}.
#' @author Thomas Alexander Gerds
#' @seealso \code{\link{plot.prodlim}}
#' @keywords survival
#' @examples
#' 
#'   plot(0,0,xlim=c(0,1),ylim=c(0,1),axes=FALSE)
#'   PercentAxis(1,at=seq(0,1,.25))
#'   PercentAxis(2,at=seq(0,1,.25))
#' 
#' @export
PercentAxis <- function(x,at,...){
  axis(x,at=at,labels=paste(100*at,"%"),...)
}

Try the prodlim package in your browser

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

prodlim documentation built on Aug. 28, 2023, 5:07 p.m.