Generic summary function for drFitFLModel objects
Source:R/fluorescence_summaries.R
summary.drFitFLModel.Rd
Generic summary function for drFitFLModel objects
Usage
# S3 method for 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.
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())
#>
#>
#> === Dose response curve estimation ================
#> --- EC 50 -----------------------------------------
#> --> test
#> sensitivity: 0.494 | yEC50: 3057 | fold change: 64.11 | leakiness: 93.9
#>
#>
print(summary(TestRun))
#> yEC50 y.min y.max fc K n yEC50.orig K.orig
#> 1 3056.543 93.89214 6019.193 64.10753 0.4937558 1.994806 3056.543 0.4937558
#> test
#> 1 NA