📜  r stagazer html knit - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:14.878000             🧑  作者: Mango

代码示例1
---
output: pdf_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library(stargazer)
```

Here is the latex table in a PDF document:

```{r mylatextable, results = "asis"}
stargazer(attitude, type = 'latex')

```