print.mixl | R Documentation |
print()
is an S3 method for the mixl class.
It creates a model summary and then prints the result
## S3 method for class 'mixl'
print(x, ...)
x |
The model to print |
... |
Options to pass to print |
data("Train", package="mlogit")
Train$ID <- Train$id
Train$CHOICE <- as.numeric(Train$choice)
mnl_test <- "
U_A = @B_price * $price_A / 1000 + @B_time * $time_A / 60;
U_B = @asc + @B_price * $price_B / 1000 + @B_timeB * $time_B / 60;
"
model_spec <- mixl::specify_model(mnl_test, Train, disable_multicore=T)
#only take starting values that are needed
est <- stats::setNames(c(1, 1,1,1), c("asc", "B_price", "B_time", "B_timeB"))
availabilities <- mixl::generate_default_availabilities(
Train, model_spec$num_utility_functions
)
model2 <- mixl::estimate(model_spec, est, Train, availabilities = availabilities)
print(model2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.