Skip to contents

Steepness and overlap calcuation

Usage

calcSteepnessOverlap(
  mod = NULL,
  obj = NULL,
  trend = "Decrease",
  CI = "inv",
  ...
)

Arguments

mod

fitted object from drm model fitting

obj

Calculated ED 10, 20, 50 object if available. mod should set to be NULL in this case

trend

"Decrease" or "Increase"

CI

method to calculate CI, either "inv" (bmd) or "delta" or "fls".

...

other parameters that will be passed into ED.plus

Value

a table with certainty of potection level and steepness of the models

Examples

if (FALSE) { # \dontrun{
 datTn<- subset(oecd201,Time==72)
 mod <- drm(Yield~Concentration,data=datTn,fct=LL.3())
 calcSteepnessOverlap(mod = mod, trend = "Decrease")
} # }