Dear all, 

I am trying to export my fixed effect results to Latex. I am using the plm 
package with the summary function. However, it does not look like apsrtable, 
stargazer, or any other package can accompany using the plm package. 

I am interested in a classic table with the coefficient in one row followed by 
the standard error in paranthesis in the next row and stars by the coefficient 
to show relevant coefficient level. 

coefficient 1   xxx**
                        (xxx)

Here is a reproducible example:

library(plm)

#generating some data
x <- rnorm(270)
y <- rnorm(270)
t <- rep(1:3,30)
i <- rep(1:90, each=3) 

data <- data.frame(i,t,x,y)

fe <- plm(y~x,data=data,model="within") 
summary(fe)

If there is an alternative to using the plm package that works with any of the 
export to latex packages, I would be very interested to know. Otherwise, any 
ideas of how to solve this problem are very welcome. I almost exclusively use 
fixed effect panel models, and the problem of exporting results to Latex is one 
of the things preventing me from switching entirely from Stata to R. 


Kind regards, 
Sebastian


        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to