plotMMKinetics: plot MM kinetics of both absorption and clearance

Description Usage Arguments Value Examples

View source: R/pkFunctions.R

Description

plot MM kinetics of both absorption and clearance

Usage

1
2
plotMMKinetics(pkModel, doseRange, concentrationRange,
  absorptionYRange = NULL, clearanceYRange = NULL)

Arguments

pkModel

an object of PkModel-class

doseRange

numeric vector representing the range of doses for absorption plot

concentrationRange

numeric vector representing the range of concentrations for the clearance plot

absorptionYRange

numeric vector of size 2 specifying y-limits for the absorption plot, defaults to NULL

clearanceYRange

numeric vector of size 2 specifying y-limits for the clearance plot, defaults to NULL

Value

ggplot2 object

Examples

1
2
3
4
5
6
7
   plotMMKinetics( pkModel = getExamplePkModel() , 
      doseRange = seq( 0 , 5 , 0.1 ) , 
      concentrationRange = seq( 0 , 2.5 , 0.1  ) )
   plotMMKinetics( pkModel = getExamplePkModel() , 
       doseRange = seq( 0 , 5 , 0.1 ) , 
       concentrationRange = seq( 0 , 2.5 , 0.1  ) , 
       clearanceYRange = c( 0 , 50 ) , absorptionYRange = c( 0 , 10 )  )

microsamplingDesign documentation built on Oct. 13, 2021, 5:10 p.m.