Description Usage Arguments Details Value Author(s) See Also Examples
Generates an object of class "ParamFamily"
.
1 2 | ParamFamily(name, distribution = Norm(), distrSymm, main = 0,
nuisance, trafo, param, props = character(0))
|
name |
character string: name of family |
distribution |
object of class |
distrSymm |
object of class |
main |
numeric vector: main parameter |
nuisance |
numeric vector: nuisance parameter |
trafo |
matrix: transformation of the parameters |
param |
object of class |
props |
character vector: properties of the family |
If name
is missing, the default
“"parametric family of probability measures"” is used.
In case distrSymm
is missing it is set
to NoSymmetry()
.
If param
is missing, the parameter is created via
main
, nuisance
and trafo
as described
in ParamFamParameter
.
Object of class "ParamFamily"
Matthias Kohl Matthias.Kohl@stamats.de
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | F1 <- ParamFamily()
plot(F1)
## The function is currently defined as
function(name, distribution = Norm(), main = 0, nuisance,
trafo, param, props = character(0)){
if(missing(name))
name <- "parametric family of probability measures"
if(missing(distrSymm)) distrSymm <- NoSymmetry()
if(missing(param))
param <- ParamFamParameter(name = paste("parameter of", name),
main = main, nuisance = nuisance, trafo = trafo)
return(new("ParamFamily", name = name, distribution = distribution,
distrSymm = distrSymm, param = param, props = props))
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.