Questions tagged [texreg]

Package for conversion of R regression output to LaTeX or HTML tables

Texreg converts coefficients, standard errors, significance stars, and goodness-of-fit statistics of statistical models into LaTeX tables or HTML tables/MS Word documents or to nicely formatted screen output for the R console for easy model comparison. A list of several models can be combined in a single table. The output is highly customizable. New model types can be easily implemented.

117 questions
0
votes
0 answers

Making pretty tables with glmmPQL (MASS) and stargazer/texreg/pander

I generated some GLMMs with glmmpql(Guassian log link) from the MASS package, with the output being: PQL_meth_sLL<- glmmPQL(sLL~Temp_fac*State, ~1|Locality/Family, family=gaussian(link="log"), data=adult, verbose=FALSE) > class(PQL_meth_sLL) >> [1]…
Virchu
  • 1
  • 2
0
votes
1 answer

Getting significance stars from a robust regression model using texreg

texreg, by default at least, doesn't place significance stars on the coefficients from a robust linear model fitted using the rlm function from the MASS package. Is there any way to make it? stargazer does, actually, as the following MWE…
DHW
  • 1,157
  • 1
  • 9
  • 24
0
votes
0 answers

Obtaining a regression table with texreg in Lyx

I'm using the packages knitr and texreg in a Lyx document and I've got this problem. When I'm using a float table in Lyx, I've always got this lines before the table in the pdf: ## Version: 1.36.23 ## Date: 2017-03-03 ## Author: Philip Leifeld…
RGuay
  • 1
  • 1
0
votes
1 answer

Using texreg function with knit and Lyx

I'm using Lyx on Mac and I want to get a regressionn output table with function texreg. My code is: <>= library(texreg) df=data.frame(y=rnorm(100)+2*x, x=1:100) reg = lm(y~x, data=df) texreg(reg) @ But I'didnt get the table in…
RGuay
  • 1
  • 1
0
votes
2 answers

Show the Result of Amelia, Multiple Imputation, by texreg or stargazer

I would like to know how to export the outcome of Multiple Imputation Amelia summary to tex or html by texreg or stargazer. However, both type of packages show the error. library(Amelia) library(Zelig) library(texreg) library(stargazer) mi…
user87562
  • 113
  • 5
0
votes
1 answer

texreg - create empty column

I use texreg to create a LaTeX table from R. I would like to insert an empty column into the output (for stylistic reasons). I can of course do this manually, but it would great to be able to create this automatically. Here is an…
Andy
  • 295
  • 1
  • 8
0
votes
1 answer

R: creating tex output from zelig tobit model with texreg

What I am trying to do should be fairly easy: I estimate a tobit model using the R package Zelig. From this I want to create a tex output using texreg. But what I get back is the error message: Error in (function (classes, fdef, mtable) : …
0
votes
2 answers

Clustered standard errors with texreg?

I'm trying to reproduce this stata example and move from stargazer to texreg. The data is available here. To run the regression and get the se I run this code: library(readstata13) library(sandwich) cluster_se <- function(model_result, data,…
Ignacio
  • 7,646
  • 16
  • 60
  • 113
0
votes
1 answer

LaTex Summary Table Options for Zelig MLogit Results

I've been trying to extract my summary stats from an mlogit model run through Zelig using texreg, stargazer and memisc. texreg throws me the following error: texreg(MLogitRes3) Error in (function (classes, fdef, mtable) : unable to find an …
0
votes
1 answer

Using a character vector in htmlreg

I am sure I am missing something obvious here. I am estimating few models using plm package and then printing them using htmlreg and knitr. I use the following code to generate html output htmlreg(list(perf1.fe,perf1.re),stars=c(0.001,0.01,…
Rfan
  • 722
  • 6
  • 11
0
votes
2 answers

How to combine regression tables in knitr

I am combining regression tables in knitr. I tried to using texreg, but it didn't work. What else can I do? Thanks. Example: \documentclass{article} \begin{document} <>= library(texreg) reg1 <- lm(Petal.Length ~ Petal.Width,…
Autumn
  • 575
  • 1
  • 9
  • 20
0
votes
1 answer

instaling texreg package in R

I tried to install the texreg package in R and am getting the following error: > install.packages("texreg", "~/R/x86_64-unknown-linux-gnu-library/2.13/") --- Please select a CRAN mirror for use in this session --- Loading Tcl/Tk interface ...…
Alex
  • 19,533
  • 37
  • 126
  • 195
1 2 3 4 5 6 7
8