Generic summary function for drFitSpline objects
Source:R/growth_summaries.R
summary.drFitSpline.Rd
Generic summary function for drFitSpline objects
Usage
# S3 method for drFitSpline
summary(object, ...)
Arguments
- object
object of class
drFitSpline
- ...
Additional arguments. This has currently no effect and is only meant to fulfill the requirements of a generic function.
Examples
conc <- c(0, rev(unlist(lapply(1:18, function(x) 10*(2/3)^x))),10)
response <- c(1/(1+exp(-0.7*(4-conc[-20])))+rnorm(19)/50, 0)
TestRun <- growth.drFitSpline(conc, response, drID = 'test',
control = growth.control(log.x.dr = TRUE, smooth.dr = 0.8))
#>
#>
#> === Dose response curve estimation ================
#> --- EC 50 -----------------------------------------
#> --> test
#> xEC50 1.62500009978428 yEC50 0.474995045539301
#> --> Original scale
#> xEC50 4.0784195439265 yEC50 0.474995045539301
#>
#>
print(summary(TestRun))
#> EC50 yEC50 EC50.orig yEC50.orig test
#> 1 1.625 0.474995 4.07842 0.474995 NA