is there a way to print the number of observations for the multinomial logistic regression model in a stargazer table? This sample code illustrates the problem. Thank you.
var1<-sample(c('A', 'B', 'C'), size=1000, replace=T)
var2<-rnorm(n=1000)
var3<-rnorm(n=1000)
df<-data.frame(var1, var2, var3)
library(nnet)
mod1<-multinom(var1~var2+var3, data=df)
library(stargazer)
stargazer(mod1, nobs=T, type="text")
Stargazer is really nice package however sometimes you have to do some tweaks "by-hand". If you want to have number of observation in you output this is how to go about it:
if you want to create a table in latex you can use:
This approach is so that once you render it in latex "n" will be in mathematical font.
Hopefully, this is what you have been asking for.