4

我正在使用 ggplot 绘制一些数据。它工作正常,但我想控制绘图区域的形状并删除灰色背景。

这是我现在正在使用的代码:

ggplot(data.melted, aes(x = Year, y = value, colour = variable)) +
    geom_line() +
    scale_x_continuous("Year") +
    scale_y_continuous("Fraction of papers") +
    scale_colour_discrete("Topics")

这是它产生的输出:在此处输入图像描述

4

1 回答 1

7
ggplot(data.melted, aes(x = Year, y = value, colour = variable)) +
    geom_line() +
    scale_x_continuous("Year") +
    scale_y_continuous("Fraction of papers") +
    scale_colour_discrete("Topics") + theme(panel.background = element_blank())

保存绘图时指定尺寸。有关?ggsave其他选项,请参阅。

ggsave(p1, file = "plot.png", width = 5, height = 5)
于 2012-09-29T17:27:26.800 回答