标签: r templates rstudio r-markdown
刚刚安装了包,并尝试使用readthedown模板,但是当我把它编织成html时。文件,一切运行顺利,但我得到了这个页面as you can see in the screenshot
--- title: "" date: "`r Sys.Date()`" output: rmdformats::material: highlight: kate ---
答案 0 :(得分:1)
问题是,你没有什么可以展示......所以它看起来都是绿色的。你的“标题”##babe I like your stlye在r代码中。 当我以下列方式运行代码时,一切运行良好:
##babe I like your stlye
--- title: "" date: "`r Sys.Date()`" output: rmdformats::material: highlight: kate --- # Summary ```{r} summary(mtcars) ``` # Plot ```{r} plot(mtcars$mpg, mtcars$hp) ```