Discrete Choice Predictions (HMNL)

dd_dem(dd, est, prob = FALSE, cores = NULL)

Arguments

dd

tibble with long-format choice data

est

estimation object

prob

logical, report probabilities instead of demand

cores

cores

Value

Draws of expected choice

See also

dd_est_hmnl() to generate demand predictions based on this model

Examples

data(icecream_discrete)
icecream_est <- icecream_discrete %>% filter(id<20) %>% dd_est_hmnl(R=10)
#> Using 16 cores
#>  MCMC in progress 
#> MCMC complete
#>  Total Time Elapsed: 0.00 minutes
#demand prediction
icecream_dempred <- icecream_discrete %>% filter(id<20) %>% 
  dd_dem(icecream_est, cores=2)
#> Using 2 cores