income
我想在数据行下填写一种颜色,我正在使用qplot
。
我有可能做到这一点吗?
下面的代码显示了它是如何绘制的,我不介意使用ggplot2以及我可以在其下填写
qplot(dat$amount_WW,dat$location, group = 1, geom=c("line","point"), ylab="amount",xlab="location",main="Ages 18-25")
非常感谢您的帮助
答案 0 :(得分:1)
您可以使用geom=c("line","point", "area")
并使用fill
设置填充颜色:
library(ggplot2)
set.seed(1)
df <- data.frame(x=1:10, y=runif(10))
qplot(x, y, data=df, geom=c("line","point", "area"), fill="red")