【发布时间】:2011-06-28 15:24:11
【问题描述】:
我正在使用 ggplot2 在绘图上显示线和点。我想要做的是让所有线条都具有相同的颜色,然后显示由属性着色的点。我的代码如下:
# Data frame
dfDemo <- structure(list(Y = c(0.906231077471568, 0.569073561538186,
0.0783433165521566, 0.724580209473378, 0.359136092118470, 0.871301974471722,
0.400628333618918, 1.41778205350433, 0.932081770977729, 0.198188442350644
), X = c(0.208755495088456, 0.147750173706688, 0.0205864576474412,
0.162635017485883, 0.118877260137735, 0.186538613831806, 0.137831912094464,
0.293293029083812, 0.219247919537514, 0.0323148791663826), Z = c(11112951L,
11713300L, 14331476L, 11539301L, 12233602L, 15764099L, 10191778L,
12070774L, 11836422L, 15148685L)), .Names = c("Y", "X", "Z"
), row.names = c(NA, 10L), class = "data.frame")
# Variables
X = array(0.1,100)
Y = seq(length=100, from=0, by=0.01)
# make data frame
dfAll <- data.frame()
# make data frames using loop
for (x in c(1:10)){
# spacemate calc
Floors = array(x,100)
# include label
Label = paste(' ', toString(x), sep="")
df1 <- data.frame(X = X * x, Y = Y, Label)
# merge df1 to cumulative df, dfAll
dfAll <- rbind(dfAll, df1)
}
# plot
pl <- ggplot(dfAll, aes(x = X, y = Y, group = Label, colour = 'Measures')) + geom_line()
# add points to plot
pl + geom_point(data=dfDemo, aes(x = X, y = Y)) + opts(legend.position = "none")
这几乎可以工作,但是当我这样做时,我无法通过Z 为点着色。我可以使用以下代码分别绘制点,用Z 着色:
ggplot(dfDemo, aes(x = X, y = Y, colour = Z)) + geom_point()
但是,如果我在绘制线条后使用类似的代码:
pl + geom_point(data=dfDemo, aes(x = X, y = Y, colour = Z)) + opts(legend.position = "none")
我收到以下错误:
Error: Continuous variable () supplied to discrete scale_hue.
我不明白如何将点添加到图表中,以便我可以按值对它们进行着色。我很感激任何关于如何解决这个问题的建议。
【问题讨论】: