为 slidify 生成好看的回归表的最佳方法是什么?
---
## Custom Tables
```{r, results = "asis", echo = FALSE}
library(xtable)
OLS <- lm(hp ~ wt, mtcars)
print(xtable(OLS), type="html", html.table.attributes='class=mytable', label ="OLS", digits = 3)
```
<style>
table.mytable {
border: none;
width: 100%;
border-collapse: collapse;
font-size: 45px;
line-height: 50px;
font-family: 'Ubuntu';'Trebuchet MS';
font-weight: bolder;
color: blue;
}
table.mytable tr:nth-child(2n+1) {
/* background: #E8F2FF; */
background: #FFFFFF;
}
</style>
我希望能够更改名称('Constant' 代替 Intercept,'Weight' 代替 wt),添加观察数、R 平方、F 统计等。
谢谢!