5

我想改变颜色和字体大小:

  1. 实验室,
  2. 实验室,
  3. X 和 Y 轴的值
  4. 面板边框(颜色)

在 R 图中有没有办法做到这一点?

4

3 回答 3

14

下面的代码演示了一些较低级别的绘图函数,这些函数提供了您想要的那种细粒度的控制。有关更多选项,请参阅多个功能的帮助页面。

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)

(生成的情节很丑陋,我会让你自己运行代码,而不是在这里重现它!)

于 2012-05-16T05:31:48.773 回答
3

查看 ?par 帮助页面以及相关的Quick-R 教程,了解可以更改以修饰或注释基本 R 图的参数的概述。

于 2012-05-16T05:22:29.097 回答
2

仅在此处使用 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')
于 2021-01-19T10:05:32.737 回答