summary.drFitFLModel {QurvE}R Documentation

Generic summary function for drFitFLModel objects

Description

Generic summary function for drFitFLModel objects

Usage

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

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.

Value

A dataframe with biosensor response parameters.

Examples

# 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))


[Package QurvE version 1.1.1 Index]