View source: R/fluorescence_summaries.R
summary.flFit | R Documentation |
Generic summary function for flFit objects
## S3 method for class 'flFit'
summary(object, ...)
object |
object of class |
... |
Additional arguments. This has currently no effect and is only meant to fulfill the requirements of a generic function. |
A dataframe with parameters extracted from all fits of a workflow.
# load example dataset
input <- read_data(data.growth = system.file("lac_promoters_growth.txt", package = "QurvE"),
data.fl = system.file("lac_promoters_fluorescence.txt", package = "QurvE"),
csvsep = "\t",
csvsep.fl = "\t")
# Run curve fitting workflow
res <- flFit(fl_data = input$norm.fluorescence,
time = input$time,
parallelize = FALSE,
control = fl.control(fit.opt = 's', suppress.messages = TRUE,
x_type = 'time', norm_fl = TRUE, nboot.fl = 20))
summary(res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.