> So, am I right to understand that in order to be able to plot the predicted values for each of the four levels of the depend variables
depend variableS?? Without a replicable example I am not sure I
understand what you're trying to do.
rm(list=ls(all=TRUE))
set.seed(1); library(effects); library(nnet)
A <- factor(rep(c("o", "l", "t"), each=100))
S <- factor(c(sample(c("f", "m"), 150, replace=TRUE, prob=c(0.7,
0.3)), sample(c("f", "m"), 150, replace=TRUE, prob=c(0.3, 0.7))))
model.01 <- multinom(A ~ S)
allEffects(model.01); plot(allEffects(model.01))