Questions tagged «stargazer»

3
将通过最大似然估计的系数获取到寻星表中
Stargazer为lm(和其他)物体产生非常漂亮的乳胶表。假设我已经以最大可能性拟合了模型。我希望观星者为我的估算出一张类似lm的桌子。我怎样才能做到这一点? 尽管有点麻烦,但是一种方法可能是创建一个包含我的估算值的“伪” lm对象-我认为,只要summary(my.fake.lm.object)有效,它就可以工作。这容易做到吗? 一个例子: library(stargazer) N <- 200 df <- data.frame(x=runif(N, 0, 50)) df$y <- 10 + 2 * df$x + 4 * rt(N, 4) # True params plot(df$x, df$y) model1 <- lm(y ~ x, data=df) stargazer(model1, title="A Model") # I'd like to produce a similar table for the model …
83 r  optimization  lm  stargazer 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.