Solved – Interpreting multinomial logistic regression output in R

logisticmultinomial-distributionrregression

I am trying to perform multinomial logistic regression on my data which is as below(just the header).
enter image description here

"category" is my target variable and all other variables are independent variables. category has values like 1,2,3,4,5,6,7,8,9. My main motive is to predict category from independent variables.
Here is summary of my data set.
summary

I used following command to perform multinomial logistic regression:

> mod=multinom(category~hlen+iplen+ipttl+iptype+tcpsport+tcpdport+tcpsec+tcpack+tcpwindow+tcpchksum+date_time, data=train)

command

I got the following output but i don't know how to interpret it?
enter image description here
What should be the starting point or is there other way to do so? (For example I know how to interpret linear and logistic regression output to create regression equations)

Please right click any image and select view to see it clearly.
Thank you,

Best Answer

Multinomial logistic regression works like a series of logistic regressions, each one comparing two levels of your dependant variable. Here, category 1 is the reference category.

For example, consider the case where you only have values where category is 1 or 5. (Recode that to 0 and 1, so that you can perform logistic regression.) The coefficients of line 5 of your output represent the variable coefficients such a logistic regression would yield.