に摂氏記号を入れたい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
。