plotMMCurve: plot Michealis-Menten curve for either capacity dependent...

Description Usage Arguments Value Examples

View source: R/pkFunctions.R

Description

plot Michealis-Menten curve for either capacity dependent absorption or clearance

Usage

1
plotMMCurve(dataInput, parameter)

Arguments

dataInput

output of function getMMCurve

parameter

character value indicating either absorption or clearance

Value

ggplot2-object

Examples

1
2
3
4
5
6
7
8
  plotMMCurve( dataInput = getMMCurve( seq(0, 5 , 0.01 ) ,
      Vmax = 5 , kappaMM = 0.3 ) , parameter = "absorption" )
  plotMMCurve( dataInput = getMMCurve( seq(0, 5 , 0.01 ) ,
      Vmax = 5 , kappaMM = 0.3 , constantValue = 4 ) , parameter = "absorption" ) 
  plotMMCurve( dataInput = getMMCurve( seq(0, 1 , 0.01 ) ,
      Vmax = 2 , kappaMM = 0.3 ) , parameter = "clearance" )
  plotMMCurve( dataInput = getMMCurve( seq(0, 1 , 0.01 ) ,
       Vmax = 2 , kappaMM = 0.3 , constantValue = 1.5 ) , parameter = "clearance" )  

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