Learn R Programming

QurvE (version 1.1.1)

summary.drFitFLModel: Generic summary function for drFitFLModel objects

Description

Generic summary function for drFitFLModel objects

Usage

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

Value

A dataframe with biosensor response parameters.

Arguments

object

object of class drFitModel

...

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

Examples

Run this code
# Create concentration values via a serial dilution
conc <- c(0, rev(unlist(lapply(1:18, function(x) 10*(2/3)^x))),10)

# Simulate response values via biosensor equation
response <- biosensor.eq(conc, y.min = 110, y.max = 6000, K = 0.5, n = 2) +
            0.01*6000*rnorm(10)

# Perform fit
TestRun <- fl.drFitModel(conc, response, drID = 'test', control = fl.control())

print(summary(TestRun))

Run the code above in your browser using DataLab