Learn R Programming

QurvE (version 1.1.1)

table_group_fluorescence_linear: Generate a grouped results table for linear fits with average and standard deviations

Description

Generate a grouped results table for linear fits with average and standard deviations

Usage

table_group_fluorescence_linear(flTable, html = FALSE)

Value

A data frame with grouped linear fit results. Empty cells indicate that no reliable fit could be determined.

Arguments

flTable

An object of class flTable

html

(Logical) Should column headers contain html formatting?

Examples

Run this code
# \donttest{
# 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 workflow
res <- fl.workflow(grodata = input, ec50 = FALSE, fit.opt = "l",
                   x_type = "time", norm_fl = TRUE,
                   dr.parameter = "max_slope.spline",
                   suppress.messages = TRUE,
                   parallelize = FALSE)

table_group_fluorescence_linear(res$flFit$flTable)

# with HTML formatting
DT::datatable(table_group_fluorescence_linear(res$flFit$flTable, html = TRUE),
              escape = FALSE) # Do not escape HTML entities
# }

Run the code above in your browser using DataLab