Learn R Programming

radiant.model (version 1.6.7)

summary.mnl: Summary method for the mnl function

Description

Summary method for the mnl function

Usage

# S3 method for mnl
summary(object, sum_check = "", conf_lev = 0.95, test_var = "", dec = 3, ...)

Arguments

object

Return value from mnl

sum_check

Optional output. "confint" to show coefficient confidence interval estimates. "rrr" to show relative risk ratios (RRRs) and confidence interval estimates.

conf_lev

Confidence level to use for coefficient and RRRs confidence intervals (.95 is the default)

test_var

Variables to evaluate in model comparison (i.e., a competing models Chi-squared test)

dec

Number of decimals to show

...

further arguments passed to or from other methods

Details

See https://radiant-rstats.github.io/docs/model/mnl.html for an example in Radiant

See Also

mnl to generate the results

plot.mnl to plot the results

predict.mnl to generate predictions

plot.model.predict to plot prediction output

Examples

Run this code
result <- mnl(
  ketchup,
  rvar = "choice",
  evar = c("price.heinz28", "price.heinz32", "price.heinz41", "price.hunts32"),
  lev = "heinz28"
)
summary(result)

Run the code above in your browser using DataLab