5

我在一个窗口中有两个直方图(使用构面),我想控制轮廓和填充的颜色。我已经尝试查找 color scales, aes(), + color, + fill,包括 color 和 fill in qplot,所有这些都产生了预期的情节!

我的代码可以在下面找到。(注:mussel2 有两列浓度(数字列表)和水体(列出或参考)。如有需要,我可以提供数据。

我知道这是一个基本问题,所以非常感谢您抽出宝贵的时间。

qplot(data=mussel2,
    x = Concentration,
    xlim = x_lim, 
    ylim = y_lim, 
    xlab = expression(paste("Concentrations of DDE (", mu, "g/g)")), 
    ylab = "Frequency",
    binwidth = 1.5)+ 
    theme(legend.position="none")+
    facet_grid(Waterbody~.)
4

2 回答 2

9

如果要保留qplot格式,请尝试以下操作:

library(ggplot2)

qplot(diamonds$carat, 
      xlab="Carat", 
      geom="histogram", 
      ylab="Count", 
      binwidth=0.25, 
      fill=I("grey"), 
      col=I("black"))

在此处输入图像描述

于 2013-09-18T21:20:11.477 回答
4

ggplot如果您想调整一些东西,请使用。我省略了您的一些选项,但您可能会弄清楚如何将它们放入。

ggplot(data = mussel2, aes(x = Concentration)) +
    geom_bar(binwidth = 1.5, fill = "firebrick4", color = "dodgerblue2") +
    scale_x_continuous(limits = x_lim) + 
    labs(y = "Frequency") +
    facet_wrap(~ Waterbody)
于 2013-09-18T21:11:11.090 回答