View source: R/fluorescence_summaries.R
summary.flFitSpline | R Documentation |
Generic summary function for flFitSpline objects
## S3 method for class 'flFitSpline'
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 a nonparametric fit.
# 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")
# Extract time and normalized fluorescence data for single sample
time <- input$time[4,]
data <- input$norm.fluorescence[4,-(1:3)] # Remove identifier columns
# Perform linear fit
TestFit <- flFitSpline(time = time,
fl_data = data,
ID = 'TestFit',
control = fl.control(fit.opt = 's', x_type = 'time'))
summary(TestFit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.