summary_tex | R Documentation |
The returned object can be passed to texreg
's formatting functions (see 'Examples').
summary_tex(model_summary, output_file)
model_summary |
A summary of an estimated Model |
output_file |
Where to save the tex representation |
Formatted texreg object containing the latex table suitable for a research paper. See createTexreg
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)
tex <- summary_tex(model2)
texreg::screenreg(tex, digits = 5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.