Learn R Programming

QurvE (version 1.1.1)

summary.drBootSpline: Generic summary function for drBootSpline objects

Description

Generic summary function for drBootSpline objects

Usage

# S3 method for drBootSpline
summary(object, ...)

Value

A dataframe with statistical parameters extracted from the dose-response bootstrapping analysis.

Arguments

object

object of class drBootSpline

...

Additional arguments. This has currently no effect and is only meant to fulfill the requirements of a generic function.

Examples

Run this code
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])))+stats::rnorm(19)/50, 0)

TestRun <- growth.drBootSpline(conc, response, drID = 'test',
        control = growth.control(log.x.dr = TRUE, smooth.dr = 0.8, nboot.dr = 50))

print(summary(TestRun))

Run the code above in your browser using DataLab