mnl_pred_ova {MNLpred} | R Documentation |
Multinomial Prediction Function (Observed Value Approach)
Description
This function predicts probabilities for all choices of a multinomial logit model over a specified span of values.
Usage
mnl_pred_ova(
model,
data,
x,
by = NULL,
z = NULL,
z_value = NULL,
xvari,
scenname,
scenvalue,
nsim = 1000,
seed = "random",
probs = c(0.025, 0.975)
)
Arguments
model |
the multinomial model, from a |
data |
the data with which the model was estimated |
x |
the name of the variable that should be varied (the x-axis variable in prediction plots) |
by |
define the steps of |
z |
if you want to hold a specific variable stable over all scenarios, you can name it here (optional). |
z_value |
determine at which value you want to fix the |
xvari |
former argument for |
scenname |
former argument for |
scenvalue |
former argument for |
nsim |
numbers of simulations |
seed |
set a seed for replication purposes. |
probs |
a vector with two numbers, defining the significance levels. Default to 5% significance level: |
Value
The function returns a list with several elements. Most importantly the list includes the simulated draws 'S', the simulated predictions 'P', and a data set for plotting 'plotdata'.
Examples
library(nnet)
library(MASS)
dataset <- data.frame(y = c(rep("a", 10), rep("b", 10), rep("c", 10)),
x1 = rnorm(30),
x2 = rnorm(30, mean = 1),
x3 = sample(1:10, 30, replace = TRUE))
mod <- multinom(y ~ x1 + x2 + x3, data = dataset, Hess = TRUE)
pred <- mnl_pred_ova(model = mod, data = dataset,
x = "x1",
nsim = 10)