LogisticFitClass-class {RPPASPACE} | R Documentation |
The LogisticFitClass
class represents models that were fit with the
logistic model.
## S4 method for signature 'LogisticFitClass'
coef(object, ...)
## S4 method for signature 'LogisticFitClass'
coefficients(object, ...)
## S4 method for signature 'LogisticFitClass'
fitSeries(object,
diln,
intensity,
est.conc,
method="nls",
silent=TRUE,
trace=FALSE,
...)
## S4 method for signature 'LogisticFitClass'
fitSlide(object,
conc,
intensity,
...)
## S4 method for signature 'LogisticFitClass'
fitted(object,
conc,
...)
## S4 method for signature 'LogisticFitClass'
trimConc(object,
conc,
intensity,
design,
trimLevel,
...)
object |
object of class |
diln |
numeric vector of dilutions for series to be fit |
intensity |
numeric vector of observed intensities for series to be fit |
est.conc |
numeric estimated concentration for EC50 dilution |
method |
character string specifying regression method to use to fit the series |
silent |
logical scalar. If |
trace |
logical scalar. Used in |
conc |
numeric vector containing estimates of the log concentration for each dilution series |
design |
object of class |
trimLevel |
numeric scalar multiplied to Median Absolute Deviation MAD |
... |
extra arguments for generic routines |
The coef
and coefficients
methods return a named vector
of length three with logistic curve coefficients.
The fitted
method returns a numeric vector.
Objects are created internally by calls to the methods
fitSlide
or RPPAFit
.
coefficients
:numeric vector of length 3, representing alpha, beta, and gamma respectively.
Class FitClass
, directly.
signature(object = "LogisticFitClass")
:
Extracts model coefficients from objects returned by modeling functions.
signature(object = "LogisticFitClass")
:
An alias for coef
signature(object = "LogisticFitClass")
:
Finds the concentration for an individual dilution series given the
curve fit for the slide.
signature(object = "LogisticFitClass")
:
Uses the concentration and intensity series for an entire slide to
fit a curve for the slide of intensity = f(conc).
signature(object = "LogisticFitClass")
:
Extracts fitted values of the model.
signature(object = "LogisticFitClass")
:
Returns concentration and intensity cutoffs for the model.
P. Roebuck paul_roebuck@comcast.net, James M. Melott jmmelott@mdanderson.org