0

这是我学习 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"))

情节上的线条不是单独的系列,而是链接在一起:

http://imgur.com/weRaX

我究竟做错了什么?

谢谢。

4

1 回答 1

2

您需要告诉ggplot2如何将数据分组到单独的行中。这不是读心术!;)

dat <- read.table(text = "        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",sep = "",header = TRUE)

qplot(temp, humidity, data = dat, group = site,color=site, geom = c("point", "line"))

在此处输入图像描述

请注意,您可能还想color = factor(site)强制使用离散色标,而不是连续色标。

于 2012-04-04T18:07:27.653 回答