Learn R Programming

drLumi (version 0.1.2)

summary.scluminex: Summary of a scluminex object

Description

Summary of a scluminex object

Usage

"summary"(object, ...)

Arguments

object
object of scluminex class.
...
other summary arguments. Ignored.

Value

An object of class summary.scluminex with the following fields:
  • parameters of the model, coefficients, standard errors, t and p values
  • obs, number of observations
  • rsquare, R squared of the model
  • modelfit, p value for goodnes of fit
  • convergence, convergence code for the model (1 = converged, 0 = otherwise)
  • plateid, plate identification name
  • fct, function used to fit the model

Examples

Run this code
# Load data
data(ecdata)
data(mfidata)

dat <- mfidata[mfidata$plate=="plate_1" & mfidata$analyte=="FGF",]

sdf <- data_selection(dat, ecdata)$plate_1

# Fit model and summary object
igmodels <- scluminex("plate_1",sdf$standard, sdf$background,
                lfct=c("SSl4", "SSl5"),
                bkg="ignore",
                fmfi="mfi",
                verbose=FALSE)
summary(igmodels)

Run the code above in your browser using DataLab