I've got a dataset with a multinomial response variable and continuous predictor variables, and am trying to find out the AIC, F, p value, and proportion of explained variance for each of the predictor variables for each category of the response variable, and in order to find the best predictive model. I'm using the functions multinom (from nnet) and stepAIC (from MASS), and while I seem to be able to get an optimal model and its AIC, I don't understand how to gain individual variable AIC, F, p values and proportion of explained variance.
The code I'm using is:
library(nnet)
library(MASS)
model<-multinom(Age~HeightD+HeightI+Inclination+HalfWidth+BaseWidth+WidthRatio+BaseDepth+HalfDepth+DepthRatio,data=comp_data)
summary(model)
step <- stepAIC(model, direction="both")
step$anova
summary(step)
I'm quite new to stats and R so please excuse me if there's any really obvious mistakes/answers!