parentFittingData-class: Class "parentFittingData"

Description Objects from the Class Slots Methods Author(s) See Also Examples

Description

Provides S4 data structure and basic infrastructure and functions to store proliferation tracking data of the Parent Population.

Objects from the Class

Objects can be created by calls of the form new("parentFittingData", flowframe, channel, ...). This class is for internal use.

Slots

data:

Object of class "flowFrame" ~~

channel:

Object of class "character" ~~

estimatedPeakPosition:

Object of class "numeric" ~~

estimatedPeakSize:

Object of class "numeric" ~~

dataRange:

Object of class "numeric" ~~

logDecades:

Object of class "numeric" ~~

parentPeakPosition:

Object of class "numeric" ~~

parentPeakSize:

Object of class "numeric" ~~

fittingDeviance:

Object of class "numeric" ~~

fixedModel:

Object of class "logical" ~~

fixedPars:

Object of class "list" ~~

binning:

Object of class "logical" ~~

breaks:

Object of class "numeric" ~~

dataSmooth:

Object of class "logical" ~~

smoothWindow:

Object of class "numeric" ~~

parStart:

Object of class "list" ~~

dataMatrix:

Object of class "matrix" ~~

dataPoints:

Object of class "data.frame" ~~

modelPoints:

Object of class "data.frame" ~~

residFun:

Object of class "function" ~~

lmOutput:

Object of class "nls.lm" ~~

Methods

plot

Basic plots for parentFittingData objects. Usage: plot(parentFittingData, main="Original data and Parent fitting", xlab="FACS data range", ylab="# of Events", showLegend=TRUE, logScale = TRUE, drawGrid = TRUE, ...)

show

Display details about the parentFittingData object.

summary

Return a descriptive summary about the parentFittingData object.

Data

Return the flowFrame object.

coef

Return coefficients of the model.

confint

Return confidence intervals of the model.

Author(s)

Davide Rambaldi

See Also

parentFitting

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
  showClass("parentFittingData")
  if(require(flowFitExampleData)){
    data(PKH26data)
    parent.fitting <-  parentFitting(PKH26data[[1]], "FL2-Height LOG")
    parent.fitting
    summary(parent.fitting)
    confint(parent.fitting)
    coef(parent.fitting)
    plot(parent.fitting)
    Data(parent.fitting)
  }

flowFit documentation built on April 28, 2020, 9:04 p.m.