vd_dem_vdm_ss {echoice2} | R Documentation |
Demand Prediction (Volumetric demand, accounting for set-size variation, EV1 errors)
Description
Generating demand predictions for volumetric demand model with set-size adjustment.
Reminder: there is no closed-form solution for demand, thus we need to integrate not only over the posterior distribution of parameters and the error distribution.
The function outputs a tibble containing id, task, alt, p, attributes, draws from the posterior of demand.
Eerror realizations can be pre-supplied to the epsilon_not
. This helps create smooth demand curves or conduct optimization.
Usage
vd_dem_vdm_ss(vd, est, epsilon_not = NULL, cores = NULL)
Arguments
vd |
data |
est |
ec-model draws |
epsilon_not |
(optional) error realizations |
cores |
(optional) cores |
Value
Draws of expected demand
See Also
prep_newprediction()
to match vd
's factor levels,
ec_gen_err_ev1()
for pre-generating error realizations and
vd_est_vdm_ss()
for estimating the corresponding model
Examples
data(icecream)
#run MCMC sampler (use way more than 10 draws for actual use)
icecream_est <- icecream %>% dplyr::filter(id<10) %>% vd_est_vdm_ss(R=10, keep=1, cores=2)
#Generate demand predictions
icecream_predicted_demand=
icecream %>% dplyr::filter(id<10) %>%
vd_dem_vdm_ss(icecream_est, cores=2)
#column .demdraws contains draws from posterior of predicted demand
[Package echoice2 version 0.2.4 Index]