TParameter-class {distr} | R Documentation |
The parameter of a t distribution, used by Td-class
Objects can be created by calls of the form new("TParameter", df)
.
Usually an object of this class is not needed on its own, it is generated automatically when an object of the class
Td
is instantiated.
df
:"numeric"
: the df of a T distribution name
:"character"
: a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "TParameter")
: initialize method signature(object = "TParameter")
: returns the slot df
of the parameter of the distribution signature(object = "TParameter")
: modifies the slot df
of the parameter of the distribution
Thomas Stabla Thomas.Stabla@uni-bayreuth.de,
Florian Camphausen Florian.Camphausen@uni-bayreuth.de,
Peter Ruckdeschel Peter.Ruckdeschel@uni-bayreuth.de,
Matthias Kohl Matthias.Kohl@stamats.de
W=new("TParameter",df=1) df(W) # df of this distribution is 1. df(W)=2 # df of this distribution is now 2.