R两个图重叠

问题描述 投票:0回答:2

我需要R中的情节帮助

我得到一个带有“data_small”源的图。我现在有第二个源“data_big”,我想在同一个图中叠加。

两个来源都有“risk_datatheft_likelihood”和“risk_datatheft_damage”列

任何的想法?第二个来源应以不同的颜色显示。

ggplot(data_small, aes(risk_datatheft_likelihood, risk_datatheft_damage)) + 
  geom_jitter(color="blue") + 
  labs(x = "damage", y = "likelihood",
       title = "Risk Map", subtitle = "Datatheft") + 
        theme_classic() +
        theme(legend.position="bottom") + 
        geom_hline(yintercept = 0.5, color="red") + 
        geom_hline(yintercept = 1.5) + 
        geom_hline(yintercept = 2.5) + 
        geom_hline(yintercept = 3.5) + 
        geom_hline(yintercept = 4.5) + 
        geom_vline(xintercept = 0.5, color="red") + 
        geom_vline(xintercept = 1.5) + 
        geom_vline(xintercept = 2.5) + 
        geom_vline(xintercept = 3.5) + 
        geom_vline(xintercept = 4.5)

data_big.csv
risk_datatheft_likelihood;risk_datatheft_damage
B;3
B;2
C;4
A;1
D;5

data_small.csv
risk_datatheft_likelihood;risk_datatheft_damage
C;4
A;2
B;3
C;4
D;1
r ggplot2
2个回答
0
投票

我想你可能只想用两个数据集的行绑定一个新变量来区分它们,如下所示:

bind_rows(mutate(data_big, size="big"),
          mutate(data_small, size="small"))

这产生了一个看起来像这样的元素:

# A tibble: 10 x 3
   risk_datatheft_likelihood risk_datatheft_damage size 
   <chr>                                     <int> <chr>
 1 B                                             3 big  
 2 B                                             2 big  
 3 C                                             4 big  
 4 A                                             1 big  
 5 D                                             5 big  
 6 C                                             4 small
 7 A                                             2 small
 8 B                                             3 small
 9 C                                             4 small
10 D                                             1 small

现在,您可以使用size作为颜色审美:

bind_rows(mutate(data_big, size="big"),
          mutate(data_small, size="small")) %>%
    ggplot(aes(risk_datatheft_likelihood, risk_datatheft_damage)) +
    geom_jitter(aes(col=size))

以下是完整的代码,后面是成绩单,因为您无法复制我的解决方案。

完整代码:

library(tidyverse)

data_big <- read_delim("data_big.csv", delim=";")
data_small <- read_delim("data_small.csv", delim=";")

# run the plot using one multiline command:
bind_rows(mutate(data_big, size="big"),
          mutate(data_small, size="small")) %>%
    ggplot(aes(risk_datatheft_likelihood, risk_datatheft_damage)) +
    geom_jitter(aes(col=size))

# alternatively, save the combined data first
data_combined <- bind_rows(mutate(data_big, size="big"),
                           mutate(data_small, size="small"))

# and run the plot separately
ggplot(data_combined,
       aes(risk_datatheft_likelihood, risk_datatheft_damage)) +
    geom_jitter(aes(col=size)) +
    labs(x = "damage", y = "likelihood",
         title = "Risk Map", subtitle = "Datatheft") +
    theme_classic() +
    theme(legend.position="bottom") +
    geom_hline(yintercept = 0.5, color="red") +
    geom_hline(yintercept = 1.5) +
    geom_hline(yintercept = 2.5) +
    geom_hline(yintercept = 3.5) +
    geom_hline(yintercept = 4.5) +
    geom_vline(xintercept = 0.5, color="red") +
    geom_vline(xintercept = 1.5) +
    geom_vline(xintercept = 2.5) +
    geom_vline(xintercept = 3.5) +
    geom_vline(xintercept = 4.5)

和完整的成绩单:

> library(tidyverse)
[... stuff about loading tidyverse ...]
> 
> data_big <- read_delim("data_big.csv", delim=";")
Parsed with column specification:
cols(
  risk_datatheft_likelihood = col_character(),
  risk_datatheft_damage = col_integer()
)
> data_small <- read_delim("data_small.csv", delim=";")
Parsed with column specification:
cols(
  risk_datatheft_likelihood = col_character(),
  risk_datatheft_damage = col_integer()
)
> 
> # run the plot using one multiline command:
> bind_rows(mutate(data_big, size="big"),
+           mutate(data_small, size="small")) %>%
+     ggplot(aes(risk_datatheft_likelihood, risk_datatheft_damage)) +
+     geom_jitter(aes(col=size))
> 
> # alternatively, save the combined data first
> data_combined <- bind_rows(mutate(data_big, size="big"),
+                            mutate(data_small, size="small"))
> 
> # and run the plot separately
> ggplot(data_combined,
+        aes(risk_datatheft_likelihood, risk_datatheft_damage)) +
+     geom_jitter(aes(col=size)) +
+     labs(x = "damage", y = "likelihood",
+          title = "Risk Map", subtitle = "Datatheft") +
+     theme_classic() +
+     theme(legend.position="bottom") +
+     geom_hline(yintercept = 0.5, color="red") +
+     geom_hline(yintercept = 1.5) +
+     geom_hline(yintercept = 2.5) +
+     geom_hline(yintercept = 3.5) +
+     geom_hline(yintercept = 4.5) +
+     geom_vline(xintercept = 0.5, color="red") +
+     geom_vline(xintercept = 1.5) +
+     geom_vline(xintercept = 2.5) +
+     geom_vline(xintercept = 3.5) +
+     geom_vline(xintercept = 4.5)
> 

0
投票

非常感谢您的帮助!我不确定,但这个组合也有效:

bind_rows(mutate(data_big, size="big"),
          mutate(data_small, size="small")) %>%
  ggplot(aes(risk_datatheft_likelihood, risk_datatheft_damage)) +
  geom_jitter(aes(col=size)) +
  labs(x = "risk_datatheft_likelihood", y = "risk_datatheft_damage",
       title = "Risk Map", subtitle = "Risiko: Datatheft") +
  theme_classic() +
  theme(legend.position="bottom") +
  geom_hline(yintercept = 0.5, color="red") +
  geom_hline(yintercept = 1.5) +
  geom_hline(yintercept = 2.5) +
  geom_hline(yintercept = 3.5) +
  geom_hline(yintercept = 4.5) +
  geom_vline(xintercept = 0.5, color="red") +
  geom_vline(xintercept = 1.5) +
  geom_vline(xintercept = 2.5) +
  geom_vline(xintercept = 3.5) +
  geom_vline(xintercept = 4.5)
© www.soinside.com 2019 - 2024. All rights reserved.