我想改变颜色和字体大小:
- 实验室,
- 实验室,
- X 和 Y 轴的值
- 面板边框(颜色)
在 R 图中有没有办法做到这一点?
下面的代码演示了一些较低级别的绘图函数,这些函数提供了您想要的那种细粒度的控制。有关更多选项,请参阅多个功能的帮助页面。
plot(rnorm(99), bty="n", axes=FALSE, xlab="", ylab="")
box(col="dodgerblue")
axis(1, col="dodgerblue", col.ticks="green", col.axis="orange", cex.axis=2)
axis(2, col="dodgerblue", col.ticks="green", col.axis="orange", cex.axis=0.8)
mtext("Index", side=1, line=3, col="red", cex=2)
mtext("Value", side=2, line=3, col="purple", cex=0.8)
(生成的情节很丑陋,我会让你自己运行代码,而不是在这里重现它!)
查看 ?par 帮助页面以及相关的Quick-R 教程,了解可以更改以修饰或注释基本 R 图的参数的概述。
仅在此处使用 ggplot2 是您的时间序列图。
your_data%>%
ggplot(aes(x=Date, y=Transactions))+geom_line(colour='gold', size=1)+
theme(panel.background = element_rect(fill='#363636'), plot.background = element_rect(fill='#363636'),
axis.text = element_text(colour='white', size = 10), axis.title = element_text(colour='white', size=12),
plot.title = element_text(colour='white'))+
geom_vline(xintercept = as.Date(c('2020-11-08', '2020-11-29')), col='red', size=1)+
labs(title='Total Transactions')