标签: r knitr
这是一个简单的降价文件:
--- title: "blah" output: html_document --- ```{r} library(tidyverse) ggplot(tibble(x=1:2)) + aes(x=x, y=x) + geom_col() + labs(y = "← low high →") ```
注意箭头。当通过控制台将代码运行到RStudio的绘图选项卡时,它们会显示出来。但对于HTML编织,它们不起作用:
答案 0 :(得分:3)
使用unicode而不是实际字符:
library(tidyverse) ggplot(tibble(x=1:2)) + aes(x=x, y=x) + geom_col() + labs(y = "\u2190 low high \u2192")