这是我学习 R 和 ggplot 的第一天。我已经学习了一些教程,并希望通过以下命令生成类似的图:
qplot(age, circumference, data = Orange, geom = c("point", "line"), colour = Tree)
它看起来像这个页面上的图: http ://www.r-bloggers.com/quick-introduction-to-ggplot2/
我创建了一个手工制作的测试数据文件,如下所示:
site temp humidity
1 1 1 3
2 1 2 4.5
3 1 12 8
4 1 14 10
5 2 1 5
6 2 3 9
7 2 4 6
8 2 8 7
但是当我尝试阅读并绘制它时:
test <- read.table('test.data')
qplot(temp, humidity, data = test, color=site, geom = c("point", "line"))
情节上的线条不是单独的系列,而是链接在一起:
我究竟做错了什么?
谢谢。