Jana
Jana

Reputation: 19

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

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: enter image description here

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?

Upvotes: 1

Views: 288

Answers (0)

Related Questions