R/plot.exposure.levels.R

Defines functions plot.exposure.levels

Documented in plot.exposure.levels

plot.exposure.levels <- function( x, col = "blue", ... ){
  if( .Device == "null device") stop("plot.vitd.curve must be called before plot.exposure.levels")
  n <- nrow(x[[1]])
  time <- x[[1]]
  for( i in 1:n ) points( time[i,], x[[2]][i,], col=col, ... )
}
jsnwyse/SimVitD documentation built on April 21, 2022, 10:07 a.m.