我想把摄氏度符号放在ggplot2
labeller
. 下面给出了 MWE 及其输出:
library(ggplot2)
ggplot(data=mtcars, mapping = aes(x=drat, y=mpg)) + geom_point() +
facet_wrap(facets = ~cyl, labeller = as_labeller(c(`4` = "4 °C",`6` = "6 °C", `8` = "8 °C")))
dev="tikz"
但是,当在中使用选项时,相同的策略不起作用knitr
。