Get coefficients estimated by maximum likelihood into a stargazer table

后端 未结 3 1447
天涯浪人
天涯浪人 2021-02-02 05:06

Stargazer produces very nice latex tables for lm (and other) objects. Suppose I\'ve fit a model by maximum likelihood. I\'d like stargazer to produce a lm-like table for my es

3条回答
  •  无人及你
    2021-02-02 05:25

    I was just having this problem and overcame this through the use of the coef se, and omit functions within stargazer... e.g.

    stargazer(regressions, ...
                         coef = list(... list of coefs...),
                         se = list(... list of standard errors...),
                         omit = c(sequence),
                         covariate.labels = c("new names"),
                         dep.var.labels.include = FALSE,
                         notes.append=FALSE), file="")
    

提交回复
热议问题