我的df:
Time CPU
1:00:00 10
1:10:00 40
1:24:03 50
等等
我正在用这个构建一个ggplot:
p <- ggplot(df, aes(Time, CPU)) + geom_line()
当我将以下代码添加到现有的 ggplot 代码时,它会在图表上放置一个黑色边框。有什么办法可以去除情节周围的黑色边界线?
p + opts(plot.background=theme_rec(fill="lightblue"),panel.background=theme_rect(fill='#D6E7EF')) + ylim(0,100) + opts(panel.grid.major = theme_line(size = 0.7, colour = 'white'), panel.grid.minor = theme_blank(), axis.ticks=theme_blank())