| ParamFamily-class {distrMod} | R Documentation | 
Parametric family of probability measures.
Description
Class of parametric families of probability measures.
Objects from the Class
Objects can be created by calls of the form new("ParamFamily", ...).
More frequently they are created via the generating function 
ParamFamily. 
Slots
- name
- [inherited from class - "ProbFamily"] object of class- "character": name of the family.
- distribution
- [inherited from class - "ProbFamily"] object of class- "Distribution": member of the family.
- distrSymm
- [inherited from class - "ProbFamily"] object of class- "DistributionSymmetry": symmetry of- distribution.
- param
- 
object of class "ParamFamParameter": parameter of the family.
- fam.call
- 
object of class "call": call by which parametric family was produced.
- makeOKPar
- 
object of class "function": has argumentparam— the (total) parameter, returns valid parameter; used ifoptimresp.optimize— try to use “illegal” parameter values; thenmakeOKParmakes a valid parameter value out of the illegal one.
- startPar
- 
object of class "function": has argumentx— the data, returns starting parameter foroptimresp.optimize— a starting estimator in case parameter is multivariate or a search interval in case parameter is univariate.
- modifyParam
- 
object of class "function": mapping from the parameter space (represented by"param") to the distribution space (represented by"distribution").
- props
- [inherited from class - "ProbFamily"] object of class- "character": properties of the family.
- .withMDE
- 
object of class "logical"(of length 1): Tells R how to use the function from slotstartParin case of akStepEstimator— use it as is or to compute the starting point for a minimum distance estimator which in turn then serves as starting point forroptest/robest(from package ROptEst). IfTRUE(default) the latter alternative is used. Ignored if ROptEst is not used.
- .withEvalAsVar
- 
object of class "logical"(of length 1): Tells R whether in determiningkStepEstimators one evaluates the asymptotic variance or just produces a call to do so.
Extends
Class "ProbFamily", directly.
Methods
- main
- signature(object = "ParamFamily"): wrapped accessor function for slot- mainof slot- param.
- nuisance
- signature(object = "ParamFamily"): wrapped accessor function for slot- nuisanceof slot- param.
- fixed
- signature(object = "ParamFamily"): wrapped accessor function for slot- fixedof slot- param.
- trafo
- signature(object = "ParamFamily", param = "missing"): wrapped accessor function for slot- trafoof slot- param.
- param
- signature(object = "ParamFamily"): accessor function for slot- param.
- modifyParam
- signature(object = "ParamFamily"): accessor function for slot- modifyParam.
- fam.call
- signature(object = "ParamFamily"): accessor function for slot- fam.call.
- plot
- signature(x = "ParamFamily"): plot of slot- distribution.- The return value of the plot method is an S3 object of class - c("plotInfo","DiagnInfo"), i.e., a list containing the information needed to produce the respective plot, which at a later stage could be used by different graphic engines (like, e.g.- ggplot) to produce the plot in a different framework. A more detailed description will follow in a subsequent version.
- show
- signature(object = "ParamFamily")
Details for methods 'show', 'print'
Detailedness of output by methods show, print is controlled
by the global option show.details to be set by 
distrModoptions.
As method show is used when inspecting an object by typing the object's 
name into the console, show comes without extra arguments and hence 
detailedness must be controlled  by global options. 
Method print may be called with a (partially matched) argument
show.details, and then the global option is temporarily set to this
value.
For class ParamFamily, this becomes relevant for slot param.
For details therefore confer to ParamFamParameter-class.
Author(s)
Matthias Kohl Matthias.Kohl@stamats.de
See Also
Examples
F1 <- new("ParamFamily") # prototype
plot(F1)