Reputation: 19
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.
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