我尝试将ggplot 2 ylim轴更改为减号(−)而不是连字符(-)。我尝试了许多不同的选项,但它仍然没有在图中显示−符号和数字。
plot <- ggplot(df_1, aes(x=t, y=RMS, color=Outcome,
fill=Outcome, shape=Outcome))
plot <- plot + scale_y_continuous(limits=c(-0.02, 0.02),
breaks=seq(-0.02, 0.02, by=0.01),
labels=c("−0.02", "−0.01", "0", "0.01", "0.02"))
1条答案
按热度按时间i7uq4tfw1#
您可以使用unicode符号
\u2212
,只需使用scale_y_continuous
中的自定义标签函数将其替换即可