Re: [R] Esttab error while exporting regression results

2012-12-27 Thread Yihui Xie
I cannot reproduce your problem with the latest version of knitr (0.9). This minimal document works fine for me: \documentclass{article} \begin{document} <>= group <- gl(3,5,20, labels=c("Ctl","Trt","prp")) weight <- runif(20) reg1 <- lm(weight ~ group) library(estout) eststo(reg1) esttab() @ \en

[R] Esttab error while exporting regression results

2012-12-23 Thread Francesco Sarracino
Dear listers, I am trying to export a regression output to a latex document using the R package eststo. I have two variables: an ordered factor: group <- gl(3,5,20, labels=c("Ctl","Trt","prp")) and a continuous variable: weight <- runif(20) I want to regress weight over group, therefore I run: