如何在R中按年份制作日历热图?

huangapple go评论115阅读模式
英文:

How to facet a calendar heatmap by year in R?

问题

我正在尝试复制下面显示的热图的代码。

我找到了创建这个热图的代码这里。然而,我的数据包括在两个位置进行的四年实验中的某些月份,我希望在单个图中显示所有四年,按月份和年份分面。目前,它只按年分面。

我已经成功创建了按年分面的各自的热图,但我不确定如何在一个图中显示按月份和年份分面的单一图。这是我的当前代码 - 它在以下代码中的facet_wrap( ~ month,步骤中无法接受year。是否有人可以帮助我修改此代码,以创建一个按年分面的图,以便我可以在单个图中看到所有四年?

以下是您提供的代码片段的翻译。其他内容未被翻译。

  1. # paquetes
  2. library(tidyverse)
  3. library(lubridate)
  4. library(ragg)
  5. # color ramp
  6. pubu <- RColorBrewer::brewer.pal(9, "PuBu")
  7. col_p <- colorRampPalette(pubu)
  8. theme_calendar <- function() {
  9. # 主题设置,包括颜色和标签
  10. }
  11. dat_prr <- dat_prr %>%
  12. rename(pr = precipitation) %>%
  13. complete(date = seq(min(date),
  14. max(date),
  15. "day")) %>%
  16. mutate(
  17. # 在数据中进行一些变换
  18. ) %>%
  19. na.omit()
  20. dat_prr <- mutate(
  21. dat_prr,
  22. week = case_when(
  23. # 根据月份和周来设置周数
  24. ),
  25. pcat = cut(pr, c(-1, 0, 0.5, 1:5, 7, 9, 25, 75)),
  26. text_col = ifelse(pcat %in% c("(7,9]", "(9,25]"), "white", "black")
  27. )
  28. calendar_Lowgap <- ggplot(dat_prr,
  29. aes(weekday,-week, fill = pcat)) +
  30. geom_tile(colour = "white", size = .4) +
  31. geom_text(aes(label = day, colour = text_col), size = 2.5) +
  32. guides(fill = guide_colorsteps(
  33. barwidth = 25,
  34. barheight = .4,
  35. title.position = "top"
  36. )) +
  37. scale_fill_manual(
  38. values = c("white", col_p(13)),
  39. na.value = "grey90",
  40. drop = FALSE
  41. ) +
  42. scale_colour_manual(values = c("black", "white"), guide = FALSE) +
  43. facet_wrap( ~ month,
  44. nrow = 4,
  45. ncol = 3,
  46. scales = "free") +
  47. labs(title = "2015年至2017年试验期间的降雨量",
  48. subtitle = "降雨",
  49. fill = "mm") +
  50. theme_calendar()

这是一个可重现的示例:

  1. dat_prr <- structure(
  2. list(
  3. date = structure(
  4. # 数据日期
  5. ),
  6. year = structure(
  7. # 数据年份
  8. ),
  9. precipitation = c(
  10. # 降水数据
  11. )
  12. ),
  13. class = c("grouped_df", "tbl_df", "tbl", "data.frame"),
  14. row.names = c(NA,-60L),
  15. groups = structure(
  16. list(
  17. year = structure(
  18. # 年份分组
  19. ),
  20. .rows = structure(
  21. list(1:15, 16:30, 31:45, 46:60),
  22. ptype = integer(0),
  23. class = c("vctrs_list_of",
  24. "vctrs_vctr", "list")
  25. )
  26. ),
  27. row.names = c(NA,-4L),
  28. class = c("tbl_df",
  29. "tbl", "data.frame"),
  30. .drop = TRUE
  31. )
  32. )
  33. dat_prr$date = as.Date(dat_prr$date)

[![在这里输入图像描述][3]][3]

  1. 注意:由于代码部分太长,我只提供了翻译,不包括整个代码。如果您需要完整的代码翻译,请告诉我。
  2. <details>
  3. <summary>英文:</summary>
  4. I am trying to replicate the code for the heatmap as shown below.
  5. [![enter image description here][1]][1]
  6. I found the code to create this heatmap [here][2]. However, my data consists of certain months from a four-year experiment at two locations, and I want to display all four years in a single figure, facetted by both month &amp; year. Currently, it&#39;s faceted by month for a single year only.
  7. I have managed to create individual heatmaps for each year faceted by month, but I&#39;m not sure how to get a single figure with faceted by both month &amp; year. Here&#39;s my current code - it won&#39;t accept `year` in ` facet_wrap( ~ month,` step in following code. Can someone help me modify this code to create a facetted plot by year, so that I can see all four years in a single figure?

paquetes

library(tidyverse)
library(lubridate)
library(ragg)

color ramp

pubu <- RColorBrewer::brewer.pal(9, "PuBu")
col_p <- colorRampPalette(pubu)

theme_calendar <- function() {
theme(
aspect.ratio = 1 / 2,

  1. axis.title = element_blank(),
  2. axis.ticks = element_blank(),
  3. axis.text.y = element_blank(),
  4. axis.text = element_text(),
  5. panel.grid = element_blank(),
  6. panel.background = element_blank(),
  7. strip.background = element_blank(),
  8. strip.text = element_text(face = &quot;bold&quot;, size = 15),
  9. legend.position = &quot;top&quot;,
  10. legend.text = element_text(hjust = .5),
  11. legend.title = element_text(size = 9, hjust = 1),
  12. plot.caption = element_text(hjust = 1, size = 8),
  13. panel.border = element_rect(
  14. colour = &quot;grey&quot;,
  15. fill = NA,
  16. size = 1
  17. ),
  18. plot.title = element_text(
  19. hjust = .5,
  20. size = 26,
  21. face = &quot;bold&quot;,
  22. margin = margin(0, 0, 0.5, 0, unit = &quot;cm&quot;)
  23. ),
  24. plot.subtitle = element_text(hjust = .5, size = 16)

)
}

dat_prr <- dat_prr %>%
rename(pr = precipitation) %>%
complete(date = seq(min(date),
max(date),
"day")) %>%
mutate(
weekday = lubridate::wday(date, label = T, week_start = 1),
month = lubridate::month(date, label = T, abbr = F),
week = isoweek(date),
day = day(date)
) %>%
na.omit()

#> Adding missing grouping variables: month

dat_prr <- mutate(
dat_prr,
week = case_when(
month == "December" & week == 1 ~ 53,
month == "January" &
week %in% 52:53 ~ 0,
TRUE ~ week
),
pcat = cut(pr, c(-1, 0, 0.5, 1:5, 7, 9, 25, 75)),
text_col = ifelse(pcat %in% c("(7,9]", "(9,25]"), "white", "black")
)

calendar_Lowgap <- ggplot(dat_prr,
aes(weekday,-week, fill = pcat)) +
geom_tile(colour = "white", size = .4) +
geom_text(aes(label = day, colour = text_col), size = 2.5) +
guides(fill = guide_colorsteps(
barwidth = 25,
barheight = .4,
title.position = "top"
)) +
scale_fill_manual(
values = c("white", col_p(13)),
na.value = "grey90",
drop = FALSE
) +
scale_colour_manual(values = c("black", "white"), guide = FALSE) +
facet_wrap( ~ month,
nrow = 4,
ncol = 3,
scales = "free") +
labs(title = "Rainfall durirng trials from 2015 to 2017",
subtitle = "Rainfall",
fill = "mm") +
theme_calendar()

  1. Here is the reproducible example

dat_prr <- structure(
list(
date = structure(
c(
16216,
16217,
16218,
16219,
16220,
16221,
16222,
16223,
16230,
16231,
16232,
16233,
16234,
16235,
16236,
16574,
16575,
16576,
16577,
16578,
16579,
16580,
16581,
16582,
16583,
16584,
16585,
16586,
16587,
16588,
16981,
16982,
16983,
16984,
16985,
16986,
16987,
16988,
16989,
16990,
16991,
16992,
16993,
16994,
16995,
17233,
17234,
17235,
17236,
17237,
17238,
17239,
17240,
17241,
17242,
17243,
17244,
17245,
17246,
17247
),
class = "Date"
),
year = structure(
c(
1L,
1L,
1L,
1L,
1L,
1L,
1L,
1L,
1L,
1L,
1L,
1L,
1L,
1L,
1L,
2L,
2L,
2L,
2L,
2L,
2L,
2L,
2L,
2L,
2L,
2L,
2L,
2L,
2L,
2L,
3L,
3L,
3L,
3L,
3L,
3L,
3L,
3L,
3L,
3L,
3L,
3L,
3L,
3L,
3L,
4L,
4L,
4L,
4L,
4L,
4L,
4L,
4L,
4L,
4L,
4L,
4L,
4L,
4L,
4L
),
.Label = c("2014", "2015",
"2016", "2017"),
class = "factor"
),
precipitation = c(
0.8,
0,
1.4,
3,
0,
1,
0,
0,
3,
0,
2.4,
1.2,
0,
0,
0,
0,
0,
1.00000001490116,
0,
0,
0,
0,
0,
1.40000002086163,
19.8000004887581,
0,
0,
0.200000002980232,
5.20000007748604,
3.00000007450581,
0.400000005960464,
0.200000002980232,
6.00000014901161,
26.3999992460012,
0.800000011920929,
19.999999910593,
1.40000002086163,
1,
0.800000011920929,
3.60000005364418,
0.200000002980232,
0.200000002980232,
0,
6.79999981820583,
0,
0,
0,
2.20000003278255,
0,
0,
0,
9.00000016391277,
0,
0,
0,
2.80000004172325,
0,
0,
0,
0
)
),
class = c("grouped_df", "tbl_df", "tbl", "data.frame"),
row.names = c(NA,-60L),
groups = structure(
list(
year = structure(
1:4,
.Label = c("2014",
"2015", "2016", "2017"),
class = "factor"
),
.rows = structure(
list(1:15, 16:30, 31:45, 46:60),
ptype = integer(0),
class = c("vctrs_list_of",
"vctrs_vctr", "list")
)
),
row.names = c(NA,-4L),
class = c("tbl_df",
"tbl", "data.frame"),
.drop = TRUE
)
)

dat_prr$date = as.Date(dat_prr$date)

  1. [![enter image description here][3]][3]
  2. [1]: https://i.stack.imgur.com/IhCOi.png
  3. [2]: https://dominicroye.github.io/en/2020/a-heatmap-as-calendar/
  4. </details>
  5. # 答案1
  6. **得分**: 0
  7. 你试过这样吗?
  8. ```r
  9. ggplot(dat_prr,
  10. aes(weekday, -week, fill = pcat)) +
  11. geom_tile(colour = "white", size = 0.4) +
  12. geom_text(aes(label = day, colour = text_col), size = 2.5) +
  13. guides(fill = guide_colorsteps(
  14. barwidth = 25,
  15. barheight = 0.4,
  16. title.position = "top"
  17. )) +
  18. scale_fill_manual(
  19. values = c("white", col_p(13)),
  20. na.value = "grey90",
  21. drop = FALSE
  22. ) +
  23. scale_colour_manual(values = c("black", "white"), guide = "none") +
  24. facet_wrap(vars(year, month),
  25. nrow = 4,
  26. ncol = 3,
  27. scales = "free") +
  28. labs(title = "2015年至2017年试验期间的降雨量",
  29. subtitle = "降雨",
  30. fill = "mm") +
  31. theme_calendar()
  32. ```
  33. [![在此输入图像描述][1]][1]
  34. ```
  35. [1]: https://i.stack.imgur.com/N3Cka.png
  36. <details>
  37. <summary>英文:</summary>
  38. Have you tried it like this?
  39. ```
  40. ggplot(dat_prr,
  41. aes(weekday,-week, fill = pcat)) +
  42. geom_tile(colour = &quot;white&quot;, size = .4) +
  43. geom_text(aes(label = day, colour = text_col), size = 2.5) +
  44. guides(fill = guide_colorsteps(
  45. barwidth = 25,
  46. barheight = .4,
  47. title.position = &quot;top&quot;
  48. )) +
  49. scale_fill_manual(
  50. values = c(&quot;white&quot;, col_p(13)),
  51. na.value = &quot;grey90&quot;,
  52. drop = FALSE
  53. ) +
  54. scale_colour_manual(values = c(&quot;black&quot;, &quot;white&quot;), guide = &quot;none&quot;) +
  55. facet_wrap(vars(year,month),
  56. nrow = 4,
  57. ncol = 3,
  58. scales = &quot;free&quot;) +
  59. labs(title = &quot;Rainfall durirng trials from 2015 to 2017&quot;,
  60. subtitle = &quot;Rainfall&quot;,
  61. fill = &quot;mm&quot;) +
  62. theme_calendar()
  63. ```
  64. [![enter image description here][1]][1]
  65. [1]: https://i.stack.imgur.com/N3Cka.png
  66. </details>

huangapple
  • 本文由 发表于 2023年4月11日 01:38:51
  • 转载请务必保留本文链接:https://go.coder-hub.com/75979363.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定