4

I have 2 datasets with unequal lengths for plotting using ggplots2:

Data A;

column x column y
0.23     1.54    
0.44     1.46
0.69     1.37
0.70     1.21
0.75     1.01
0.88     0.91 

Data B:

column x column y
0.13     1.24    
0.34     1.16
0.49     1.07
0.54     0.99
0.69     1.01

I'm sure of how to write a code in ggplot2 for plotting these two data sets together. In both cases, plots shown as x axis = column x and y axis= column y. Can someone help me please?

James

4

3 回答 3

5

假设您有数据集 A 和 B 作为 data.frame:

A <- data.frame(x=1:5, y=11:15)
B <- data.frame(x=1:10, y=20:11)

您必须将它们连接在一起:

df <- rbind(A, B) # Join A and B together.
df
    x  y
1   1 11
2   2 12
3   3 13
4   4 14
5   5 15
6   1 20
7   2 19
8   3 18
9   4 17
10  5 16
11  6 15
12  7 14
13  8 13
14  9 12
15 10 11

然后你可以绘制它:

ggplot(data=df, aes(x=x, y=y)) + geom_point()

如果要通过颜色区分数据集 A 和 B 中的点:

df$dataset <- c(rep("A", nrow(A)), rep("B", nrow(B)))
df
    x  y dataset
1   1 11       A
2   2 12       A
3   3 13       A
4   4 14       A
5   5 15       A
6   1 20       B
7   2 19       B
8   3 18       B
9   4 17       B
10  5 16       B
11  6 15       B
12  7 14       B
13  8 13       B
14  9 12       B
15 10 11       B

ggplot(data=df, aes(x=x, y=y, col=dataset)) + geom_point()

如果要通过颜色和大小区分数据集 A 和 B 中的点并更改轴标签:

ggplot(data=df, aes(x=x, y=y, col=dataset, size=dataset)) + geom_point() +
scale_color_manual(name="Dataset", labels = c("Data A","Data B"), values=c("red", "blue")) + 
scale_size_manual(name="Dataset", labels = c("Data A","Data B"), values=c(10, 5)) + 
xlab("xxxx") + ylab("yyyy")

请参阅教程或使用 google :)。

于 2013-03-22T08:49:23.213 回答
3

我知道在绘制数据点(稀疏的)和理论曲线中的一条线(有很多数据点)时,总是会出现这种情况

在这种情况下,您可以分别为每个 ggplot 几何图形提供不同的美学映射。

例如[在此编辑以使最好的例子成为第一个]

ggplot() +
  geom_point(data = df_A, aes(x, y)) + 
  geom_line(data = df_B, aes(x, y), color = "red") +
  theme_minimal() 

或者

ggplot() +
  with(df_A, geom_point(aes(x, y))) + 
  with(df_B, geom_line(aes(x, y)), color = "red") +
  theme_minimal() 
于 2020-06-18T17:49:15.000 回答
1

一种选择是将数据放入一个 data.frame 中。这是一个使用ldply()from的示例plyr(),假设您的 data.frames 被命名为d1and d2

library(plyr)
> d3 <- ldply(list(d1 = d2, d2 = d2))
> rbind(head(d3,2), tail(d3,2))
   .id column.x column.y
1   d1     0.13     1.24
2   d1     0.34     1.16
9   d2     0.54     0.99
10  d2     0.69     1.01

或者在绘图时简单地将不同的数据集传递给不同的几何图形。像这样的东西:

ggplot() +
  geom_point(data = d1, aes(column.x, column.y)) +
  geom_point(data = d2, aes(column.x, column.y), colour = "red")
于 2013-03-22T03:44:32.560 回答