How to display a large Regression output in RMarkdown (for PDF) - r

I am learning different statistical models and how to compute them using R.
I want to display the summary of a large multinomial logistic regression model in RMarkdown so that I am able to generate a PDF file.
However, only one page with the regression results is visible in the generated PDF file. The other results are simply cut off.
This is what I get:
I have tried the following code to output the summary of my model:
```{r, results = 'asis'}
texreg(model_pchoice)
```
I expect to generate a nice PDF File with an appealing table (spanning several pages if necessary). How could I proceed?

Related

R Markdown Stargazer – Fitting Regression Tables onto a single sheet when knitting to PDF

If I have a super long regression table from Stargazer that I'm knitting to a pdf, how can I fit the regression table onto the page (eg. scaling the table, rotating the table)? I am just completely lost and have searched through markdown code a lot.

Scale Regression Summary in Beamer Presentation

In order to create a presentation, I use R Markdown. I'd like to print a linear regression (lm) or mixed-effects model (lmer) summary on a slide. However, it does not fit neatly on the slide and I searched the web for a method that allows me to scale the summary, but I couldn't find anything useful. Of course, I could delve deeply into the LaTeX configuration of my Markdown document. However, I was wondering whether there is a quick solution e.g., using a certain package, function or set up the relevant chunk differently?
I use stargazer to create the regresssion tables, there you can change the font size with font.size, the column spacing withcolumn.sep.width and/or print the regressions on one row with single.row = TRUE.

write model summary and plot to one pdf in r

My question is how to combine model summary and multiple plots into one pdf file.
This is what I'm trying to do:
pdf('model_result.pdf')
print(summary(my.model))
print(plot(my.model))
dev.off()
The resulting pdf file only contains the graph. No model summary. Do anyone know how to do that? Thanks a lot.

R: Pander does not correctly number summary tables from regression output

I am using pander to print regression output. However, it is automatically (incorrectly) labeling the tables. I have tried to use setcaption to override this habit, but it simply puts the caption to the right of the automated table number.
Any thoughts?

R: reproducing R hurdle regression summary table into latex output

I have been performing the hurdle regression (from: library(pscl), using the command summary(hurdle(y~x))) for my supervisor and now I am trying to make the hurdle regression summary output into a latex table. However for some reason none of the usual tricks work - xtable(), regtex(), latextable() all refuses to convert the summary table into a latex output. I even tried stargazer() but of course the answer was no. Is there anyway I can convert the hurdle regression summary table into a latex output? I am not comfortable with LaTex and making one from the scratch would be really painful!
EDIT: What is remarkable about this problem is that stargazer and texreg both (the latter is more reasonable to me cause it gives both parts of the model) give output on the console but throw an error in knitr documents.

Resources