यहाँ मैं क्या करना चाहता हूँ, लेकिन वहाँ predict
mlogit के लिए कोई विधि नहीं है । कोई विचार?
library(mlogit)
data("Fishing", package = "mlogit")
Fish <- mlogit.data(Fishing, varying = c(2:9), shape = "wide", choice = "mode")
Fish_fit<-Fish[-1,]
Fish_test<-Fish[1,]
m <- mlogit(mode ~price+ catch | income, data = Fish_fit)
predict(m,newdata=Fish_test)