RMarkdown使用readthedown模板编织,仅显示颜色

时间:2016-11-11 09:31:09

标签: r templates rstudio r-markdown

刚刚安装了包,并尝试使用readthedown模板,但是当我把它编织成html时。文件,一切运行顺利,但我得到了这个页面as you can see in the screenshot

---
title: ""
date: "`r Sys.Date()`"
output:
  rmdformats::material:
    highlight: kate
---

1 个答案:

答案 0 :(得分:1)

问题是,你没有什么可以展示......所以它看起来都是绿色的。你的“标题”##babe I like your stlye在r代码中。 当我以下列方式运行代码时,一切运行良好:

---
title: ""
date: "`r Sys.Date()`"
output:
  rmdformats::material:
    highlight: kate
---

# Summary

```{r}
summary(mtcars)
```
# Plot

```{r}
plot(mtcars$mpg, mtcars$hp)
```

enter image description here