Learn R Programming

microsamplingDesign (version 1.0.8)

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

Description

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

Usage

plotMMCurve(dataInput, parameter)

Arguments

dataInput

output of function getMMCurve

parameter

character value indicating either absorption or clearance

Value

ggplot2-object

Examples

Run this code
# NOT RUN {
  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" )  
# }

Run the code above in your browser using DataLab