STK++ 0.9.13
|
A joint Gamma model is a statistical model of the following form. More...
#include <STK_ModelGamma_aj_bj.h>
Classes | |
class | dloglikelihood |
Public Types | |
typedef DataBridge< Data_ > | Data |
Type of the container storing the data. | |
typedef hidden::Traits< Data_ >::Row | RowVector |
typedef WColVector_ | WColVector |
Type of the array storing the weights of the data. | |
typedef IMultiStatModel< ModelGamma_aj_bj< Data_, WColVector_ > > | Base |
Type of the data in the container. | |
![]() | |
typedef hidden::StatModelTraits< ModelGamma_aj_bj< Data_, WColVector_ > >::Data | Data |
Type of the container with the data. | |
typedef hidden::StatModelTraits< ModelGamma_aj_bj< Data_, WColVector_ > >::Type | Type |
Type of the data in the container. | |
typedef hidden::StatModelTraits< ModelGamma_aj_bj< Data_, WColVector_ > >::WColVector | WColVector |
Type of the vector with the weights. | |
typedef hidden::StatModelTraits< ModelGamma_aj_bj< Data_, WColVector_ > >::Parameters | Parameters |
Type of the parameters of the Model. | |
Public Member Functions | |
ModelGamma_aj_bj () | |
default constructor. | |
ModelGamma_aj_bj (Data const &data) | |
Constructor with data set. | |
ModelGamma_aj_bj (Data const *p_data) | |
Constructor with a ptr on the data set. | |
ModelGamma_aj_bj (ModelGamma_aj_bj const &model) | |
Copy constructor. | |
~ModelGamma_aj_bj () | |
destructor | |
CPointX const & | shape () const |
CPointX const & | scale () const |
CPointX const & | mean () const |
CPointX const & | meanLog () const |
vector of the mean log of the observations | |
CPointX const & | variance () const |
vector of the variance of the observations | |
int | computeNbFreeParameters () const |
compute the number of free parameters | |
Real | computeLnLikelihood (RowVector const &rowData) const |
compute the log Likelihood of an observation. | |
void | computeParameters () |
compute the parameters | |
void | computeParameters (WColVector const &weights) |
compute the weighted parameters | |
void | writeParametersImpl (ostream &os) const |
Write the parameters on the output stream os. | |
![]() | |
Data const *const | p_data () const |
Parameters const & | param () const |
String const & | error () const |
void | setData (Data const *p_data) |
Set the data set. | |
bool | run () |
Estimate the parameters of the model and update the model. | |
bool | run (WColVector const &weights) |
compute the weighted empirical probability of success based on the observed variables. | |
void | writeParameters (ostream &os) |
void | writeParametersImpl (ostream &os) |
default implementation of the writeParameters method. | |
![]() | |
int | nbSample () const |
Real | lnNbSample () const |
int | nbVariable () const |
Real | lnLikelihood () const |
Real | likelihood () const |
int | nbFreeParameter () const |
Real | computeBIC () const |
Real | computeAIC () const |
Real | computeML () const |
![]() | |
Derived & | asDerived () |
static cast : return a reference of this with a cast to the derived class. | |
Derived const & | asDerived () const |
static cast : return a const reference of this with a cast to the derived class. | |
Derived * | asPtrDerived () |
static cast : return a ptr on a Derived of this with a cast to the derived class. | |
Derived const * | asPtrDerived () const |
static cast : return a ptr on a constant Derived of this with a cast to the derived class. | |
Derived * | clone () const |
create a leaf using the copy constructor of the Derived class. | |
Derived * | clone (bool isRef) const |
create a leaf using the copy constructor of the Derived class and a flag determining if the clone is a reference or not. | |
Private Member Functions | |
CPointX & | shape () |
CPointX & | scale () |
CPointX & | mean () |
CPointX & | meanLog () |
vector of the mean log of the observations | |
CPointX & | variance () |
vector of the variance of the observations | |
Additional Inherited Members | |
![]() | |
IMultiStatModel () | |
default constructor. | |
IMultiStatModel (Data const &data) | |
Constructor with data set. | |
IMultiStatModel (Data const *p_data) | |
Constructor with a ptr on the data set. | |
IMultiStatModel (IMultiStatModel const &model) | |
Copy constructor. | |
~IMultiStatModel () | |
destructor | |
Parameters & | param () |
Real | computeLnLikelihood () const |
compute the log Likelihood of the statistical model. | |
void | update () |
update the model if a new data set is set | |
![]() | |
IStatModelBase () | |
Default constructor. | |
IStatModelBase (int nbSample) | |
Constructor with specified dimension. | |
IStatModelBase (int nbSample, int nbVariable) | |
Constructor with specified dimension. | |
IStatModelBase (IStatModelBase const &model) | |
Copy constructor. | |
~IStatModelBase () | |
destructor | |
void | setNbFreeParameter (int const &nbFreeParameter) |
set the number of free parameters of the model | |
void | setNbSample (int const &nbSample) |
set the number of samples of the model | |
void | setNbVariable (int const &nbVariable) |
set the number of variables of the model | |
void | setLnLikelihood (Real const &lnLikelihood) |
set the log-likelihood of the model | |
void | initialize (int nbSample, int nbVariable) |
set the dimensions of the parameters of the model | |
![]() | |
IRecursiveTemplate () | |
constructor. | |
~IRecursiveTemplate () | |
destructor. | |
![]() | |
Data const * | p_data_ |
Pointer on the parameters of the model. | |
Parameters | param_ |
Pointer on the parameters of the model. | |
String | msg_error_ |
String with the last error message. | |
A joint Gamma model is a statistical model of the following form.
Definition at line 142 of file STK_ModelGamma_aj_bj.h.
typedef IMultiStatModel< ModelGamma_aj_bj<Data_, WColVector_> > STK::ModelGamma_aj_bj< Data_, WColVector_ >::Base |
Type of the data in the container.
Base class
Definition at line 171 of file STK_ModelGamma_aj_bj.h.
typedef DataBridge<Data_> STK::ModelGamma_aj_bj< Data_, WColVector_ >::Data |
Type of the container storing the data.
Definition at line 163 of file STK_ModelGamma_aj_bj.h.
typedef hidden::Traits<Data_>::Row STK::ModelGamma_aj_bj< Data_, WColVector_ >::RowVector |
Definition at line 164 of file STK_ModelGamma_aj_bj.h.
typedef WColVector_ STK::ModelGamma_aj_bj< Data_, WColVector_ >::WColVector |
Type of the array storing the weights of the data.
Definition at line 166 of file STK_ModelGamma_aj_bj.h.
|
inline |
default constructor.
Definition at line 176 of file STK_ModelGamma_aj_bj.h.
|
inline |
|
inline |
Constructor with a ptr on the data set.
Definition at line 180 of file STK_ModelGamma_aj_bj.h.
|
inline |
|
inline |
Real STK::ModelGamma_aj_bj< Data_, WColVector_ >::computeLnLikelihood | ( | RowVector const & | rowData | ) | const |
compute the log Likelihood of an observation.
Definition at line 223 of file STK_ModelGamma_aj_bj.h.
References STK::Law::Gamma::lpdf(), and STK::sum().
|
inline |
compute the number of free parameters
Definition at line 198 of file STK_ModelGamma_aj_bj.h.
References STK::IMultiStatModel< ModelGamma_aj_bj< Data_, WColVector_ > >::p_data().
void STK::ModelGamma_aj_bj< Data_, WColVector_ >::computeParameters | ( | ) |
compute the parameters
Definition at line 233 of file STK_ModelGamma_aj_bj.h.
References STK::Algo::findZero(), and STK::mean().
void STK::ModelGamma_aj_bj< Data_, WColVector_ >::computeParameters | ( | WColVector const & | weights | ) |
compute the weighted parameters
Definition at line 252 of file STK_ModelGamma_aj_bj.h.
References STK::Algo::findZero(), and STK::mean().
|
inlineprivate |
Definition at line 214 of file STK_ModelGamma_aj_bj.h.
References STK::IMultiStatModel< ModelGamma_aj_bj< Data_, WColVector_ > >::param().
|
inline |
Definition at line 191 of file STK_ModelGamma_aj_bj.h.
References STK::IMultiStatModel< ModelGamma_aj_bj< Data_, WColVector_ > >::param().
|
inlineprivate |
vector of the mean log of the observations
Definition at line 216 of file STK_ModelGamma_aj_bj.h.
References STK::IMultiStatModel< ModelGamma_aj_bj< Data_, WColVector_ > >::param().
|
inline |
vector of the mean log of the observations
Definition at line 193 of file STK_ModelGamma_aj_bj.h.
References STK::IMultiStatModel< ModelGamma_aj_bj< Data_, WColVector_ > >::param().
|
inlineprivate |
Definition at line 212 of file STK_ModelGamma_aj_bj.h.
References STK::IMultiStatModel< ModelGamma_aj_bj< Data_, WColVector_ > >::param().
|
inline |
Definition at line 189 of file STK_ModelGamma_aj_bj.h.
References STK::IMultiStatModel< ModelGamma_aj_bj< Data_, WColVector_ > >::param().
|
inlineprivate |
Definition at line 210 of file STK_ModelGamma_aj_bj.h.
References STK::IMultiStatModel< ModelGamma_aj_bj< Data_, WColVector_ > >::param().
|
inline |
Definition at line 187 of file STK_ModelGamma_aj_bj.h.
References STK::IMultiStatModel< ModelGamma_aj_bj< Data_, WColVector_ > >::param().
|
inlineprivate |
vector of the variance of the observations
Definition at line 218 of file STK_ModelGamma_aj_bj.h.
References STK::IMultiStatModel< ModelGamma_aj_bj< Data_, WColVector_ > >::param().
|
inline |
vector of the variance of the observations
Definition at line 195 of file STK_ModelGamma_aj_bj.h.
References STK::IMultiStatModel< ModelGamma_aj_bj< Data_, WColVector_ > >::param().
void STK::ModelGamma_aj_bj< Data_, WColVector_ >::writeParametersImpl | ( | ostream & | os | ) | const |
Write the parameters on the output stream os.
Definition at line 272 of file STK_ModelGamma_aj_bj.h.
References _T.