r - 手动添加图例到 ggplot2 不起作用

标签 r ggplot2 legend

<分区>

我不仅搜索了 stackoverflow,还搜索了许多其他网站。不幸的是,我还找不到任何帮助。我将尽可能明确地解释我的问题。由于这是我在 stackoverflow 上的第一个问题,请保持温和,我是 R 的完全初学者。我的目标是手动向我已经创建的 ggplot2 对象添加图例。

这是我正在使用的数据集:

structure(list(Values = 0:5, Count = c(213L, 128L, 37L, 18L, 
3L, 1L), rel_freq = c(0.5325, 0.32, 0.0925, 0.045, 0.0075, 0.0025
), pois_distr = c(0.505352031744286, 0.344902761665475, 0.117698067418343, 
0.0267763103376731, 0.00456870795136548, 0.000623628635361388
)), class = "data.frame", row.names = c(NA, -6L))

看起来像

  Values Count rel_freq   pois_distr
1      0   213   0.5325 0.5053520317
2      1   128   0.3200 0.3449027617
3      2    37   0.0925 0.1176980674
4      3    18   0.0450 0.0267763103
5      4     3   0.0075 0.0045687080
6      5     1   0.0025 0.0006236286

接下来,我已经成功创建了一个 ggplot,代码是:

cols <- c('Beob. Häufigkeiten' = 'lightblue', 'Theor. Häufigkeiten' = 'darkblue')
plot_yeast1 <- ggplot(data.frame(data1_plot), aes(x=Values)) + 
  geom_col(aes(y=rel_freq, fill = 'Beob. Häufigkeiten'), col = 'lightblue4', alpha = 0.8) + 
  geom_point(aes(y=pois_distr, colour = 'Theor. Häufigkeiten'), alpha = 0.9, size = 4) +
  scale_fill_manual(name = 'Legende', values = cols) +
  scale_colour_manual(name ='Legende', values = cols) + 
  scale_y_continuous(breaks = seq(0, 0.6, 0.05)) +
  labs(title = 'Gegenüberstellung der beobachteten Häufigkeiten mit den theoretischen \nHäufigkeiten aus dem geschätzten Poissonmodell', x = 'Auftretende Fehler von Hefezellen', y = 'Relative Häufigkeit', subtitle = 'Konzentration 1') +
  theme_bw()
plot_yeast1

输出为:

Plot 1 with both headers

我的目标是,将绘图右侧的两个手动创建的图例合并为一个。我已经尝试跳过图例的第二个标题,然后它看起来像

Plot without second header

但广阔的空间是丑陋的,必须有可能将这两个传说合并为一个,两个条目靠得很近。 我已经上了9个多小时,找了很多帖子,都没有解决我的问题。 如果有任何不清楚的地方,请告诉我。正如我已经写过的,这是第一次提出问题。 谢谢

最佳答案

如果它主要是关于在视觉上从两个图例中创建“一个”图例,这种方法可能会有所帮助 - 详细信息请参阅对 theme(...) 的评论 - 最后调用:

cols <- c('Beob. Häufigkeiten' = 'lightblue', 'Theor. Häufigkeiten' = 'darkblue')
plot_yeast1 <- ggplot(data.frame(data1_plot), aes(x=Values)) + 
  geom_col(aes(y=rel_freq, fill = 'Beob. Häufigkeiten'), col = 'lightblue4', alpha = 0.8) + 
  geom_point(aes(y=pois_distr, colour = 'Theor. Häufigkeiten'), alpha = 0.9, size = 4) +
  scale_fill_manual(name = 'Legende', values = cols) +
  scale_colour_manual(name ='', values = cols) + 
  scale_y_continuous(breaks = seq(0, 0.6, 0.05)) +
  labs(title = 'Gegenüberstellung der beobachteten Häufigkeiten mit den theoretischen \nHäufigkeiten aus dem geschätzten Poissonmodell', x = 'Auftretende Fehler von Hefezellen', y = 'Relative Häufigkeit', subtitle = 'Konzentration 1') +
  theme_bw() +
  theme(legend.box.background = element_rect(colour = "grey", fill = "white"), # create a box around all legends
        legend.box.margin = margin(0.1, 0.1, 0.1, 0.1, "cm"),                  # specify the margin of that box
        legend.background = element_blank(),                                   # remove boxes around legends (redundant here, as theme_bw() seems to do that already)
        legend.spacing = unit(-0.5, "cm"),                                     # move legends closer together
        legend.margin = margin(0, 0.2, 0, 0.2, "cm"))                          # specify margins of each legend: top and bottom 0 to move them closer
plot_yeast1

enter image description here

关于r - 手动添加图例到 ggplot2 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61347704/

相关文章:

r - 如何界定 ​​Voronoi 多边形的外部区域并与 map 数据相交

r - str_count : Problem with NAs and multiple occurance of similar words

r - 更改箭头的箭头()

RMarkdown : how to get english error messages on a localised system

r - 在 R 中查找有理函数的局部最大值

r - 如果输入存储在变量中,geom_emoji() 函数不接受输入

r - 在 R 中使用 facet_grid 单独突出显示数据

Matlab 标签、绘图、图例

python - Matplotlib:多个等高线变量等高线图的多个图例

Python Matplotlib 多色图例入门