dd_dem: Discrete Choice Predictions (HMNL)

dd_demR Documentation

Discrete Choice Predictions (HMNL)

Description

Discrete Choice Predictions (HMNL)

Usage

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<10) %>% dd_est_hmnl(R=4, cores=2)
#demand prediction
icecream_dempred <- icecream_discrete %>% filter(id<10) %>% 
  dd_dem(icecream_est, cores=2)


echoice2 documentation built on Nov. 20, 2023, 9:06 a.m.