The FitClass
class is a virtual class representing the model that
was fit in the RPPAFit
routine. Functions for use with FitClass
are only to be used internally.
is.FitClass(x)
# S4 method for FitClass
coef(object, ...)
# S4 method for FitClass
coefficients(object, ...)
# S4 method for FitClass
fitSeries(object,
diln,
intensity,
est.conc,
method="nls",
silent=TRUE,
trace=FALSE,
...)
# S4 method for FitClass
fitSlide(object,
conc,
intensity,
...)
# S4 method for FitClass
fitted(object,
conc,
...)
# S4 method for FitClass
trimConc(object,
conc,
intensity,
design,
trimLevel,
...)
The is.FitClass
method returns TRUE
if its
argument is an object of subclass of class FitClass
.
The coef
and coefficients
methods return NULL
.
object of (sub)class FitClass
object of (sub)class FitClass
numeric vector of dilutions for series to be fit
numeric vector of observed intensities for series to be fit
numeric estimated concentration for EC50 dilution
character string specifying regression method to use to fit the series
logical scalar. If TRUE
, report of error messages will
be suppressed in try(nlsmeth(...))
logical scalar. Used in nls
method.
numeric vector containing current estimates of concentration for each series
object of class RPPADesignParams
describing options for processing
the array
numeric scalar multiplied to Median Absolute Deviation MAD
extra arguments for generic routines
This class should not be instantiated directly; extend this class instead.
signature(object = "FitClass")
:
Placeholder method which should be implemented by subclass if appropriate
for the particular model.
signature(object = "FitClass")
:
An alias for coef
.
signature(object = "FitClass")
:
Placeholder method which must be implemented by subclass.
signature(object = "FitClass")
:
Placeholder method which must be implemented by subclass.
signature(object = "FitClass")
:
Placeholder method which must be implemented by subclass.
signature(object = "FitClass")
:
Placeholder method which must be implemented by subclass.
P. Roebuck paul_roebuck@comcast.net, James M. Melott jmmelott@mdanderson.org