I have a dataset that has weather=0 if temp is <65 degrees Fahrenheit, weather = 1 if temp is =65 degrees Fahrenheit, and weather = 2 if temp is >68 degrees Fahrenheit. I need to estimate a probability that the temp is between 65 <= weather < 68 degrees Fahrenheit, given the days = 20. Here is the formula and output
multinom(formula = weather ~ days, data = USWeather13)
Which gives the coefficient table:
Coefficients:
(Intercept) days
1 5.142 -.252
2 25.120 .343
Std. Errors:
(Intercept) days
1 1.742 .007
2 1.819 .004
Does anyone know how I can interpret this or figure out this problem?