10#ifndef MULTINOMIAL_LPMF
11#define MULTINOMIAL_LPMF
14#include "../../common/fims_vector.hpp"
16namespace fims_distributions {
35template <
typename Type>
71 this->
lpdf =
static_cast<Type
>(0.0);
74 std::fill(this->
lpdf_vec.begin(), this->lpdf_vec.end(), 0);
75 size_t lpdf_vec_idx = 0;
80 throw std::invalid_argument(
81 "MultinomialLPDF: Vector index out of bounds. The dimension of "
83 "number of rows times the number of columns is of size " +
85 " and the expected vector is of size " +
91 throw std::invalid_argument(
92 "MultinomialLPDF: Vector index out of bounds. The dimension of the "
93 "number of rows times the number of columns is of size " +
95 " and the observed vector is of size " +
99 throw std::invalid_argument(
100 "MultinomialLPDF: Vector index out of bounds. The dimension of the "
101 "observed vector of size " +
103 " and the expected vector is of size " +
104 std::to_string(this->expected_values.size()));
108 for (
size_t i = 0; i <
dims[0]; i++) {
116 bool containsNA =
false;
119 for (
size_t j = 0; j <
dims[1]; j++) {
124 static_cast<size_t>(j)) ==
130 size_t idx = (i *
dims[1]) + j;
137 size_t idx = (i *
dims[1]) + j;
144 std::fill(this->
lpdf_vec.begin() + lpdf_vec_idx,
145 this->lpdf_vec.begin() + lpdf_vec_idx +
dims[1],
146 dmultinom(observed_values_vector.
to_tmb(),
147 prob_vector.
to_tmb(),
true));
153 lpdf_vec_idx +=
dims[1];
Definition fims_vector.hpp:27
void resize(size_t s)
Changes the number of elements stored.
Definition fims_vector.hpp:375
std::vector< Type > to_tmb() const
Convert fims::Vector to TMB vector type.
Definition fims_vector.hpp:468
size_type size() const
Returns the number of elements.
Definition fims_vector.hpp:273
Declares the DensityComponentBase class, which is the base class for all distribution functors.
Base class for all module_name functors.
Definition density_components_base.hpp:32
fims::Vector< Type > lpdf_vec
Vector storing observation-level log-likelihood contributions.
Definition density_components_base.hpp:190
fims::Vector< Type > observed_values
Input value of distribution function for priors or random effects.
Definition density_components_base.hpp:61
Type & get_expected(size_t i)
Retrieve one expected value based on input_type and use_mean.
Definition density_components_base.hpp:122
Type lpdf
Total log probability density contribution of the distribution.
Definition density_components_base.hpp:180
fims::Vector< Type > * data_expected_values
Expected value vector for data pathways.
Definition density_components_base.hpp:53
Type & get_observed(size_t i)
Retrieve one observed value based on input_type.
Definition density_components_base.hpp:83
std::string input_type
Classification of the input pathway for this distribution object. Options used by accessor methods ar...
Definition density_components_base.hpp:38
std::shared_ptr< fims_data_object::DataObject< Type > > data_observed_values
Observed data.
Definition density_components_base.hpp:41
Implements the MultinomialLPMF distribution functor used by FIMS to evaluate the observation-level an...
Definition multinomial_lpmf.hpp:36
virtual const Type evaluate()
Evaluates the multinomial log probability mass function.
Definition multinomial_lpmf.hpp:62
virtual ~MultinomialLPMF()
Destructor.
Definition multinomial_lpmf.hpp:49
fims::Vector< size_t > dims
Dimensions of the number of rows and columns of the multivariate dataset.
Definition multinomial_lpmf.hpp:41
MultinomialLPMF()
Constructor.
Definition multinomial_lpmf.hpp:45