Last updated: 2024-04-03
Checks: 7 0
Knit directory:
heatwave_co2_flux_2023/analysis/
This reproducible R Markdown analysis was created with workflowr (version 1.7.0). The Checks tab describes the reproducibility checks that were applied when the results were created. The Past versions tab lists the development history.
Great! Since the R Markdown file has been committed to the Git repository, you know the exact version of the code that produced these results.
Great job! The global environment was empty. Objects defined in the global environment can affect the analysis in your R Markdown file in unknown ways. For reproduciblity it’s best to always run the code in an empty environment.
The command set.seed(20240307)
was run prior to running
the code in the R Markdown file. Setting a seed ensures that any results
that rely on randomness, e.g. subsampling or permutations, are
reproducible.
Great job! Recording the operating system, R version, and package versions is critical for reproducibility.
Nice! There were no cached chunks for this analysis, so you can be confident that you successfully produced the results during this run.
Great job! Using relative paths to the files within your workflowr project makes it easier to run your code on other machines.
Great! You are using Git for version control. Tracking code development and connecting the code version to the results is critical for reproducibility.
The results in this page were generated with repository version 53c89bd. See the Past versions tab to see a history of the changes made to the R Markdown and HTML files.
Note that you need to be careful to ensure that all relevant files for
the analysis have been committed to Git prior to generating the results
(you can use wflow_publish
or
wflow_git_commit
). workflowr only checks the R Markdown
file, but you know if there are other scripts or data files that it
depends on. Below is the status of the Git repository when the results
were generated:
Ignored files:
Ignored: .Rhistory
Ignored: .Rproj.user/
Ignored: data/input/
Unstaged changes:
Deleted: analysis/CMEMS.Rmd
Deleted: analysis/OceanSODA.Rmd
Deleted: analysis/SOM_FFN.Rmd
Modified: analysis/_site.yml
Modified: analysis/child/pCO2_product_analysis.Rmd
Deleted: analysis/pco2_product_synopsis.Rmd
Modified: code/Workflowr_project_managment.R
Note that any generated files, e.g. HTML, png, CSS, etc., are not included in this status report because it is ok for generated content to have uncommitted changes.
These are the previous versions of the repository in which changes were
made to the R Markdown
(analysis/pco2_product_synopsis_2022.Rmd
) and HTML
(docs/pco2_product_synopsis_2022.html
) files. If you’ve
configured a remote Git repository (see ?wflow_git_remote
),
click on the hyperlinks in the table below to view the files as they
were in that past version.
File | Version | Author | Date | Message |
---|---|---|---|---|
html | b18bddc | jens-daniel-mueller | 2024-04-02 | Build site. |
Rmd | daa6398 | jens-daniel-mueller | 2024-04-02 | soft coded anomaly year |
html | b84678b | jens-daniel-mueller | 2024-04-02 | Build site. |
Rmd | 7a3f148 | jens-daniel-mueller | 2024-04-02 | anomaly year 2022 for all pco2 products |
center <- -160
boundary <- center + 180
target_crs <- paste0("+proj=robin +over +lon_0=", center)
# target_crs <- paste0("+proj=eqearth +over +lon_0=", center)
# target_crs <- paste0("+proj=eqearth +lon_0=", center)
# target_crs <- paste0("+proj=igh_o +lon_0=", center)
worldmap <- ne_countries(scale = 'small',
type = 'map_units',
returnclass = 'sf')
worldmap <- worldmap %>% st_break_antimeridian(lon_0 = center)
worldmap_trans <- st_transform(worldmap, crs = target_crs)
# ggplot() +
# geom_sf(data = worldmap_trans)
coastline <- ne_coastline(scale = 'small', returnclass = "sf")
coastline <- st_break_antimeridian(coastline, lon_0 = 200)
coastline_trans <- st_transform(coastline, crs = target_crs)
# ggplot() +
# geom_sf(data = worldmap_trans, fill = "grey", col="grey") +
# geom_sf(data = coastline_trans)
bbox <- st_bbox(c(xmin = -180, xmax = 180, ymax = 65, ymin = -78), crs = st_crs(4326))
bbox <- st_as_sfc(bbox)
bbox_trans <- st_break_antimeridian(bbox, lon_0 = center)
bbox_graticules <- st_graticule(
x = bbox_trans,
crs = st_crs(bbox_trans),
datum = st_crs(bbox_trans),
lon = c(20, 20.001),
lat = c(-78,65),
ndiscr = 1e3,
margin = 0.001
)
bbox_graticules_trans <- st_transform(bbox_graticules, crs = target_crs)
rm(worldmap, coastline, bbox, bbox_trans)
# ggplot() +
# geom_sf(data = worldmap_trans, fill = "grey", col="grey") +
# geom_sf(data = coastline_trans) +
# geom_sf(data = bbox_graticules_trans)
lat_lim <- ext(bbox_graticules_trans)[c(3,4)]*1.002
lon_lim <- ext(bbox_graticules_trans)[c(1,2)]*1.005
# ggplot() +
# geom_sf(data = worldmap_trans, fill = "grey90", col = "grey90") +
# geom_sf(data = coastline_trans) +
# geom_sf(data = bbox_graticules_trans, linewidth = 1) +
# coord_sf(crs = target_crs,
# ylim = lat_lim,
# xlim = lon_lim,
# expand = FALSE) +
# theme(
# panel.border = element_blank(),
# axis.text = element_blank(),
# axis.ticks = element_blank()
# )
latitude_graticules <- st_graticule(
x = bbox_graticules,
crs = st_crs(bbox_graticules),
datum = st_crs(bbox_graticules),
lon = c(20, 20.001),
lat = c(-60,-30,0,30,60),
ndiscr = 1e3,
margin = 0.001
)
latitude_graticules_trans <- st_transform(latitude_graticules, crs = target_crs)
latitude_labels <- data.frame(lat_label = c("60°N","30°N","Eq.","30°S","60°S"),
lat = c(60,30,0,-30,-60)-4, lon = c(35)-c(0,2,4,2,0))
latitude_labels <- st_as_sf(x = latitude_labels,
coords = c("lon", "lat"),
crs = "+proj=longlat")
latitude_labels_trans <- st_transform(latitude_labels, crs = target_crs)
# ggplot() +
# geom_sf(data = worldmap_trans, fill = "grey", col = "grey") +
# geom_sf(data = coastline_trans) +
# geom_sf(data = bbox_graticules_trans) +
# geom_sf(data = latitude_graticules_trans,
# col = "grey60",
# linewidth = 0.2) +
# geom_sf_text(data = latitude_labels_trans,
# aes(label = lat_label),
# size = 3,
# col = "grey60")
year_anom <- 2022
files <- list.files("../data",
pattern = paste0(year_anom,"_anomaly_map_annual.csv"),
full.names = TRUE)
pco2_product_coarse_annual_regression <-
read_csv(files,
id = "product")
pco2_product_coarse_annual_regression <-
pco2_product_coarse_annual_regression %>%
mutate(product = str_extract(product, "OceanSODA|SOM_FFN|CMEMS"))
files <- list.files("../data",
pattern = paste0(year_anom,"_anomaly_map_monthly.csv"),
full.names = TRUE)
pco2_product_coarse_monthly_regression <-
read_csv(files,
id = "product")
pco2_product_coarse_monthly_regression <-
pco2_product_coarse_monthly_regression %>%
mutate(product = str_extract(product, "OceanSODA|SOM_FFN|CMEMS"))
files <- list.files("../data",
pattern = paste0(year_anom,"_anomaly_hovmoeller_monthly.csv"),
full.names = TRUE)
pco2_product_hovmoeller_monthly_regression <-
read_csv(files,
id = "product")
pco2_product_hovmoeller_monthly_regression <-
pco2_product_hovmoeller_monthly_regression %>%
mutate(product = str_extract(product, "OceanSODA|SOM_FFN|CMEMS"))
files <- list.files("../data",
pattern = paste0(year_anom,"_biome_annual_regression.csv"),
full.names = TRUE)
pco2_product_annual_regression <-
read_csv(files,
id = "product")
pco2_product_annual_regression <-
pco2_product_annual_regression %>%
mutate(product = str_extract(product, "OceanSODA|SOM_FFN|CMEMS"))
files <- list.files("../data",
pattern = paste0(year_anom,"_biome_annual_detrended.csv"),
full.names = TRUE)
pco2_product_annual_detrended <-
read_csv(files,
id = "product")
pco2_product_annual_detrended <-
pco2_product_annual_detrended %>%
mutate(product = str_extract(product, "OceanSODA|SOM_FFN|CMEMS"))
files <- list.files("../data",
pattern = paste0(year_anom,"_biome_monthly_detrended_anomaly.csv"),
full.names = TRUE)
pco2_product_monthly_detrended_anomaly <-
read_csv(files[1],
id = "product")
pco2_product_monthly_detrended_anomaly <-
pco2_product_monthly_detrended_anomaly %>%
mutate(product = str_extract(product, "OceanSODA|SOM_FFN|CMEMS"))
map <-
read_rds("../data/map.rds")
key_biomes <-
read_rds("../data/key_biomes.rds")
super_biomes <-
read_rds("../data/super_biomes.rds")
name_core <- c("fgco2", "fgco2_int", "fgco2_hov",
"spco2", "sfco2",
"atm_co2", "atm_fco2",
"dco2", "dfco2",
"wind", "kw",
"temperature", "sol")
pco2_product_annual_detrended <- pco2_product_annual_detrended %>%
mutate(name = factor(name, levels = name_core))
pco2_product_annual_regression <- pco2_product_annual_regression %>%
mutate(name = factor(name, levels = name_core))
pco2_product_coarse_annual_regression <-
pco2_product_coarse_annual_regression %>%
mutate(name = factor(name, levels = name_core))
pco2_product_coarse_monthly_regression <-
pco2_product_coarse_monthly_regression %>%
mutate(name = factor(name, levels = name_core))
pco2_product_hovmoeller_monthly_regression <-
pco2_product_hovmoeller_monthly_regression %>%
mutate(name = factor(name, levels = name_core))
labels_breaks <- function(i_name) {
if (i_name == "dco2") {
i_legend_title <- "ΔpCO<sub>2</sub><br>(µatm)"
# i_breaks <- c(-Inf, seq(0, 80, 10), Inf)
# i_contour_level <- 50
# i_contour_level_abs <- 2200
}
if (i_name == "dfco2") {
i_legend_title <- "ΔfCO<sub>2</sub><br>(µatm)"
# i_breaks <- c(-Inf, seq(0, 80, 10), Inf)
# i_contour_level <- 50
# i_contour_level_abs <- 2200
}
if (i_name == "atm_co2") {
i_legend_title <- "pCO<sub>2,atm</sub><br>(µatm)"
# i_breaks <- c(-Inf, seq(0, 80, 10), Inf)
# i_contour_level <- 50
# i_contour_level_abs <- 2200
}
if (i_name == "atm_fco2") {
i_legend_title <- "fCO<sub>2,atm</sub><br>(µatm)"
# i_breaks <- c(-Inf, seq(0, 80, 10), Inf)
# i_contour_level <- 50
# i_contour_level_abs <- 2200
}
if (i_name == "sol") {
i_legend_title <- "CO<sub>2</sub> solubility<br>(mol m<sup>-3</sup> µatm<sup>-1</sup>)"
# i_breaks <- c(-Inf, seq(0, 80, 10), Inf)
# i_contour_level <- 50
# i_contour_level_abs <- 2200
}
if (i_name == "kw") {
i_legend_title <- "K<sub>w</sub><br>(m yr<sup>-1</sup>)"
# i_breaks <- c(-Inf, seq(0, 80, 10), Inf)
# i_contour_level <- 50
# i_contour_level_abs <- 2200
}
if (i_name == "spco2") {
i_legend_title <- "pCO<sub>2,ocean</sub><br>(µatm)"
# i_breaks <- c(-Inf, seq(0, 80, 10), Inf)
# i_contour_level <- 50
# i_contour_level_abs <- 2200
}
if (i_name == "sfco2") {
i_legend_title <- "fCO<sub>2,ocean</sub><br>(µatm)"
# i_breaks <- c(-Inf, seq(0, 80, 10), Inf)
# i_contour_level <- 50
# i_contour_level_abs <- 2200
}
if (i_name == "fgco2") {
i_legend_title <- "FCO<sub>2</sub><br>(mol m<sup>-2</sup> yr<sup>-1</sup>)"
# i_breaks <- c(-Inf, seq(0, 80, 10), Inf)
# i_contour_level <- 50
# i_contour_level_abs <- 2200
}
if (i_name == "fgco2_hov") {
i_legend_title <- "FCO<sub>2</sub><br>(PgC deg<sup>-1</sup> yr<sup>-1</sup>)"
# i_breaks <- c(-Inf, seq(0, 80, 10), Inf)
# i_contour_level <- 50
# i_contour_level_abs <- 2200
}
if (i_name == "fgco2_int") {
i_legend_title <- "FCO<sub>2</sub><br>(PgC yr<sup>-1</sup>)"
# i_breaks <- c(-Inf, seq(0, 80, 10), Inf)
# i_contour_level <- 50
# i_contour_level_abs <- 2200
}
if (i_name == "temperature") {
i_legend_title <- "SST<br>(°C)"
# i_breaks <- c(-Inf, seq(0, 80, 10), Inf)
# i_contour_level <- 50
# i_contour_level_abs <- 2200
}
if (i_name == "salinity") {
i_legend_title <- "SSS"
# i_breaks <- c(-Inf, seq(0, 80, 10), Inf)
# i_contour_level <- 50
# i_contour_level_abs <- 2200
}
if (i_name == "chl") {
i_legend_title <- "lg(Chl-a)<br>(lg(mg m<sup>-3</sup>))"
# i_breaks <- c(-Inf, seq(0, 80, 10), Inf)
# i_contour_level <- 50
# i_contour_level_abs <- 2200
}
if (i_name == "mld") {
i_legend_title <- "lg(MLD)<br>(lg(m))"
# i_breaks <- c(-Inf, seq(0, 80, 10), Inf)
# i_contour_level <- 50
# i_contour_level_abs <- 2200
}
if (i_name == "press") {
i_legend_title <- "pressure<sub>atm</sub><br>(unit?)"
# i_breaks <- c(-Inf, seq(0, 80, 10), Inf)
# i_contour_level <- 50
# i_contour_level_abs <- 2200
}
if (i_name == "wind") {
i_legend_title <- "Wind <br>(m sec<sup>-1</sup>)"
# i_breaks <- c(-Inf, seq(0, 80, 10), Inf)
# i_contour_level <- 50
# i_contour_level_abs <- 2200
}
all_labels_breaks <- lst(i_legend_title,
# i_breaks,
# i_contour_level,
# i_contour_level_abs
)
return(all_labels_breaks)
}
# labels_breaks("fgco2")
x_axis_labels <-
c(
"dco2" = labels_breaks("dco2")$i_legend_title,
"dfco2" = labels_breaks("dfco2")$i_legend_title,
"atm_co2" = labels_breaks("atm_co2")$i_legend_title,
"sol" = labels_breaks("sol")$i_legend_title,
"kw" = labels_breaks("kw")$i_legend_title,
"spco2" = labels_breaks("spco2")$i_legend_title,
"sfco2" = labels_breaks("sfco2")$i_legend_title,
"fgco2_hov" = labels_breaks("fgco2_hov")$i_legend_title,
"fgco2_int" = labels_breaks("fgco2_int")$i_legend_title,
"temperature" = labels_breaks("temperature")$i_legend_title,
"salinity" = labels_breaks("salinity")$i_legend_title,
"chl" = labels_breaks("chl")$i_legend_title,
"mld" = labels_breaks("mld")$i_legend_title,
"press" = labels_breaks("press")$i_legend_title,
"wind" = labels_breaks("wind")$i_legend_title
)
The following maps show the anomalies of each variable in 2022 as provided through the pCO2 product. Anomalies are determined based on the predicted value of a linear regression model fit to the available data from 1990 to 2021.
Maps are first presented as annual means, and than as monthly means. Note that the 2023 predictions for the monthly maps are done individually for each month, such the mean seasonal anomaly from the annual mean is removed.
Note: The increase the computational speed, I regridded all maps to 5X5° grid.
pco2_product_coarse_annual_regression %>%
filter(name %in% name_core) %>%
group_split(name) %>%
# head(1) %>%
map(
~ map +
geom_tile(data = .x,
aes(lon, lat, fill = resid)) +
labs(title = paste(year_anom, "anomaly")) +
scale_fill_divergent(
name = labels_breaks(.x %>% distinct(name))
) +
theme(legend.title = element_markdown()) +
facet_wrap(~ product, ncol = 1)
)
[[1]]
[[2]]
[[3]]
[[4]]
[[5]]
[[6]]
[[7]]
[[8]]
[[9]]
[[10]]
[[11]]
pco2_product_coarse_annual_regression %>%
filter(name %in% name_core) %>%
group_by(name) %>%
filter(year %in% c(min(year), max(year))) %>%
ungroup() %>%
select(-c(value, resid)) %>%
arrange(year) %>%
group_by(lon, lat, name, product) %>%
mutate(change = fit - lag(fit),
period = paste(lag(year), year, sep = "-")) %>%
ungroup() %>%
filter(!is.na(change)) %>%
group_split(name) %>%
head(1) %>%
map(
~ map +
geom_tile(data = .x,
aes(lon, lat, fill = change)) +
labs(title = paste("Change: ",.x$period)) +
scale_fill_divergent(name = labels_breaks(.x %>% distinct(name))) +
theme(legend.title = element_markdown()) +
facet_wrap(~ product, ncol = 1)
)
pco2_product_coarse_monthly_regression %>%
filter(name %in% name_core) %>%
group_split(name) %>%
# head(1) %>%
map(
~ map +
geom_tile(data = .x,
aes(lon, lat, fill = resid)) +
labs(title = paste(year_anom, "anomaly")) +
scale_fill_divergent(name = labels_breaks(.x %>% distinct(name))) +
theme(legend.title = element_markdown()) +
facet_grid(month ~ product)
)
[[1]]
[[2]]
[[3]]
[[4]]
[[5]]
[[6]]
[[7]]
[[8]]
[[9]]
[[10]]
[[11]]
The following Hovmoeller plots show the anomalies from the prediction of a linear/quadratic fit to the data from 1990 to 2021.
Hovmoeller plots are presented as monthly means. Note that the predictions for the monthly Hovmoeller plots are done individually for each month, such the mean seasonal anomaly from the annual mean is removed.
pco2_product_hovmoeller_monthly_regression %>%
filter(name %in% name_core) %>%
group_split(name) %>%
# head(1) %>%
map(
~ ggplot(data = .x,
aes(decimal, lat, fill = resid)) +
geom_raster() +
scale_fill_divergent(name = labels_breaks(.x %>% distinct(name))) +
theme(legend.title = element_markdown()) +
coord_cartesian(expand = 0) +
labs(title = "Monthly mean anomalies",
y = "Latitude") +
theme(axis.title.x = element_blank()) +
facet_wrap( ~ product, ncol = 1)
)
[[1]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
[[2]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
[[3]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
[[4]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
[[5]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
[[6]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
[[7]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
[[8]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
[[9]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
[[10]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
[[11]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
The following plots show biome-, super biome- or global- averaged/integrated values of each variable as provided through the pCO2 product, represented here as the anomalies from the prediction of a linear/quadratic fit to the data from 1990 to 2021.
Anomalies are presented relative to the predicted annual mean of each year, hence preserving the seasonality. ## Anomalies
pco2_product_annual_detrended %>%
filter(biome %in% "Global",
name %in% name_core) %>%
ggplot(aes(month, resid, group = as.factor(year))) +
geom_path(data = . %>% filter(year < year_anom-1),
aes(col = year)) +
scale_color_grayC() +
new_scale_color() +
geom_path(data = . %>% filter(between(year, year_anom-1, year_anom)),
aes(col = as.factor(year)),
linewidth = 1) +
scale_color_manual(values = c("orange", "red"),
guide = guide_legend(reverse = TRUE,
order = 1)) +
scale_x_continuous(breaks = seq(1, 12, 3), expand = c(0, 0)) +
labs(title = "Anomalies from predicted annual mean | Global") +
facet_grid(name ~ product,
scales = "free_y",
labeller = labeller(name = x_axis_labels),
switch = "y"
) +
theme(
strip.text.y.left = element_markdown(),
strip.placement = "outside",
strip.background.y = element_blank(),
axis.title.y = element_blank(),
legend.title = element_blank()
)
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
pco2_product_annual_detrended %>%
filter(biome %in% super_biomes,
name %in% name_core) %>%
group_split(biome) %>%
# head(1) %>%
map(
~ ggplot(data = .x,
aes(month, resid, group = as.factor(year))) +
geom_path(data = . %>% filter(year < year_anom - 1),
aes(col = year)) +
scale_color_grayC() +
new_scale_color() +
geom_path(
data = . %>% filter(between(year, year_anom - 1, year_anom)),
aes(col = as.factor(year)),
linewidth = 1
) +
scale_color_manual(
values = c("orange", "red"),
guide = guide_legend(reverse = TRUE,
order = 1)
) +
scale_x_continuous(breaks = seq(1, 12, 3), expand = c(0, 0)) +
labs(title = paste("Anomalies from predicted annual mean |", .x$biome)) +
facet_grid(
name ~ product,
scales = "free_y",
labeller = labeller(name = x_axis_labels),
switch = "y"
) +
theme(strip.text.y.left = element_markdown(),
strip.placement = "outside",
strip.background.y = element_blank(),
axis.title = element_blank(),
legend.title = element_blank()
)
)
[[1]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
[[2]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
[[3]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
pco2_product_annual_detrended %>%
filter(biome %in% key_biomes,
name %in% name_core) %>%
group_split(biome) %>%
# head(1) %>%
map(
~ ggplot(data = .x,
aes(month, resid, group = as.factor(year))) +
geom_path(data = . %>% filter(year < year_anom - 1),
aes(col = year)) +
scale_color_grayC() +
new_scale_color() +
geom_path(data = . %>% filter(between(year, year_anom - 1, year_anom)),
aes(col = as.factor(year)),
linewidth = 1) +
scale_color_manual(
values = c("orange", "red"),
guide = guide_legend(reverse = TRUE,
order = 1)
) +
scale_x_continuous(breaks = seq(1, 12, 3), expand = c(0, 0)) +
labs(title = paste("Anomalies from predicted annual mean |", .x$biome)) +
facet_grid(
name ~ product,
scales = "free_y",
labeller = labeller(name = x_axis_labels),
switch = "y"
) +
theme(strip.text.y.left = element_markdown(),
strip.placement = "outside",
strip.background.y = element_blank(),
axis.title = element_blank(),
legend.title = element_blank()
)
)
[[1]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
[[2]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
[[3]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
[[4]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
[[5]]
Version | Author | Date |
---|---|---|
b84678b | jens-daniel-mueller | 2024-04-02 |
The following plots aim to unravel the correlation between biome-, super-biome- or globally- integrated monthly flux anomalies and the corresponding anomalies of the means/integrals of each other variable.
Anomalies are first presented are first presented in absolute units. Due to the different flux magnitudes, we need to plot the globally and biome-integrated fluxes separately. Secondly, we normalize the anomalies to the monthly spread (expressed as standard deviation) of the anomalies from 1990 to 2021.
pco2_product_annual_regression %>%
filter(year == year_anom,
name %in% name_core) %>%
mutate(region = case_when(biome == "Global" ~ "Global",
biome %in% super_biomes ~ "Super biomes",
TRUE ~ "Biomes"),
region = factor(region, levels = c("Global", "Super biomes", "Biomes"))) %>%
group_split(name) %>%
# head(1) %>%
map(
~ ggplot(data = .x) +
geom_col(aes(biome, value, fill = product),
position = "dodge2") +
scale_fill_light() +
geom_col(aes(biome, fit, group = product, col = paste0(year_anom,"\nlinear\nprediction")),
position = "dodge2",
fill = "transparent") +
labs(y = labels_breaks(unique(.x$name))$i_legend_title) +
scale_color_grey() +
facet_grid(.~region, scales = "free_x", space = "free_x") +
theme(legend.title = element_blank(),
axis.text.x = element_text(angle = 90, vjust = 0.5, hjust=1),
axis.title.x = element_blank(),
axis.title.y = element_markdown(),
strip.background = element_blank(),
legend.position = "top")
)
[[1]]
Version | Author | Date |
---|---|---|
b18bddc | jens-daniel-mueller | 2024-04-02 |
[[2]]
Version | Author | Date |
---|---|---|
b18bddc | jens-daniel-mueller | 2024-04-02 |
[[3]]
Version | Author | Date |
---|---|---|
b18bddc | jens-daniel-mueller | 2024-04-02 |
[[4]]
Version | Author | Date |
---|---|---|
b18bddc | jens-daniel-mueller | 2024-04-02 |
[[5]]
Version | Author | Date |
---|---|---|
b18bddc | jens-daniel-mueller | 2024-04-02 |
[[6]]
Version | Author | Date |
---|---|---|
b18bddc | jens-daniel-mueller | 2024-04-02 |
[[7]]
Version | Author | Date |
---|---|---|
b18bddc | jens-daniel-mueller | 2024-04-02 |
[[8]]
Version | Author | Date |
---|---|---|
b18bddc | jens-daniel-mueller | 2024-04-02 |
[[9]]
Version | Author | Date |
---|---|---|
b18bddc | jens-daniel-mueller | 2024-04-02 |
[[10]]
Version | Author | Date |
---|---|---|
b18bddc | jens-daniel-mueller | 2024-04-02 |
[[11]]
Version | Author | Date |
---|---|---|
b18bddc | jens-daniel-mueller | 2024-04-02 |
pco2_product_annual_regression %>%
filter(biome %in% "Global",
name %in% name_core) %>%
select(-c(value, fit)) %>%
pivot_wider(values_from = resid) %>%
pivot_longer(-c(product, year, biome, fgco2_int)) %>%
group_split(name) %>%
# head(1) %>%
map(
~ ggplot(data = .x,
aes(value, fgco2_int)) +
geom_hline(yintercept = 0) +
geom_point(
data = . %>% filter(year < year_anom),
aes(fill = year),
shape = 21
) +
geom_smooth(
data = . %>% filter(year < year_anom),
method = "lm",
se = FALSE,
fullrange = TRUE,
aes(col = paste("Regression fit\nprior", year_anom))
) +
scale_color_grey() +
scale_fill_grayC() +
new_scale_fill() +
geom_point(
data = . %>% filter(between(year, year_anom-1, year_anom)),
aes(fill = as.factor(year)),
shape = 21,
size = 2
) +
scale_fill_manual(
values = c("orange", "red"),
guide = guide_legend(reverse = TRUE,
order = 1)
) +
labs(y = labels_breaks("fgco2_int")$i_legend_title,
x = labels_breaks(unique(.x$name))$i_legend_title) +
facet_grid(
biome ~ product,
scales = "free_y"
) +
theme(
axis.title.x = element_markdown(),
axis.title.y = element_markdown(),
legend.title = element_blank()
)
)
[[1]]
[[2]]
[[3]]
[[4]]
[[5]]
[[6]]
[[7]]
[[8]]
[[9]]
[[10]]
pco2_product_annual_regression %>%
filter(biome %in% super_biomes,
name %in% name_core) %>%
select(-c(value, fit)) %>%
pivot_wider(values_from = resid) %>%
pivot_longer(-c(product, year, biome, fgco2_int)) %>%
group_split(name) %>%
# head(1) %>%
map(
~ ggplot(data = .x,
aes(value, fgco2_int)) +
geom_hline(yintercept = 0) +
geom_point(
data = . %>% filter(year < year_anom),
aes(fill = year),
shape = 21
) +
geom_smooth(
data = . %>% filter(year < year_anom),
method = "lm",
se = FALSE,
fullrange = TRUE,
aes(col = paste("Regression fit\nprior", year_anom))
) +
scale_color_grey() +
scale_fill_grayC() +
new_scale_fill() +
geom_point(
data = . %>% filter(between(year, year_anom-1, year_anom)),
aes(fill = as.factor(year)),
shape = 21,
size = 2
) +
scale_fill_manual(
values = c("orange", "red"),
guide = guide_legend(reverse = TRUE,
order = 1)
) +
labs(y = labels_breaks("fgco2_int")$i_legend_title,
x = labels_breaks(unique(.x$name))$i_legend_title) +
facet_grid(
biome ~ product,
scales = "free_y"
) +
theme(
axis.title.x = element_markdown(),
axis.title.y = element_markdown(),
legend.title = element_blank()
)
)
[[1]]
[[2]]
[[3]]
[[4]]
[[5]]
[[6]]
[[7]]
[[8]]
[[9]]
[[10]]
pco2_product_annual_regression %>%
filter(biome %in% key_biomes,
name %in% name_core) %>%
select(-c(value, fit)) %>%
pivot_wider(values_from = resid) %>%
pivot_longer(-c(product, year, biome, fgco2_int)) %>%
group_split(name) %>%
# head(1) %>%
map(
~ ggplot(data = .x,
aes(value, fgco2_int)) +
geom_hline(yintercept = 0) +
geom_point(
data = . %>% filter(year < year_anom),
aes(fill = year),
shape = 21
) +
geom_smooth(
data = . %>% filter(year < year_anom),
method = "lm",
se = FALSE,
fullrange = TRUE,
aes(col = paste("Regression fit\nprior", year_anom))
) +
scale_color_grey() +
scale_fill_grayC() +
new_scale_fill() +
geom_point(
data = . %>% filter(between(year, year_anom-1, year_anom)),
aes(fill = as.factor(year)),
shape = 21,
size = 2
) +
scale_fill_manual(
values = c("orange", "red"),
guide = guide_legend(reverse = TRUE,
order = 1)
) +
labs(y = labels_breaks("fgco2_int")$i_legend_title,
x = labels_breaks(unique(.x$name))$i_legend_title) +
facet_grid(
biome ~ product,
scales = "free_y"
) +
theme(
axis.title.x = element_markdown(),
axis.title.y = element_markdown(),
legend.title = element_blank()
)
)
[[1]]
[[2]]
[[3]]
[[4]]
[[5]]
[[6]]
[[7]]
[[8]]
[[9]]
[[10]]
pco2_product_monthly_detrended_anomaly %>%
filter(biome %in% super_biomes) %>%
pivot_longer(-c(year, month, biome, fgco2_int)) %>%
group_split(name) %>%
head(1) %>%
map(
~ ggplot(data = .x,
aes(value, fgco2_int)) +
geom_hline(yintercept = 0) +
geom_point(
data = . %>% filter(year < year_anom),
aes(col = paste(min(year), max(year), sep = "-")),
alpha = 0.2
) +
geom_smooth(
data = . %>% filter(year < year_anom),
aes(col = paste(min(year), max(year), sep = "-")),
method = "lm",
se = FALSE,
fullrange = TRUE
) +
scale_color_grey(name = "") +
new_scale_color() +
geom_path(data = . %>% filter(between(year, year_anom-1, year_anom)),
aes(col = as.factor(month), group = 1)) +
geom_point(
data = . %>% filter(between(year, year_anom-1, year_anom)),
aes(fill = as.factor(month)),
shape = 21,
size = 3
) +
scale_color_scico_d(
palette = "buda",
guide = guide_legend(reverse = TRUE,
order = 1),
name = "Month\nof 2023"
) +
scale_fill_scico_d(
palette = "buda",
guide = guide_legend(reverse = TRUE,
order = 1),
name = "Month\nof 2023"
) +
facet_wrap( ~ biome, ncol = 3, scales = "free_x") +
labs(
title = "Super biome integrated fluxes",
y = labels_breaks("fgco2_int")$i_legend_title,
x = labels_breaks(.x %>% distinct(name))$i_legend_title
) +
theme(axis.title.x = element_markdown(),
axis.title.y = element_markdown())
)
sessionInfo()
R version 4.2.2 (2022-10-31)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: openSUSE Leap 15.5
Matrix products: default
BLAS: /usr/local/R-4.2.2/lib64/R/lib/libRblas.so
LAPACK: /usr/local/R-4.2.2/lib64/R/lib/libRlapack.so
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
[5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
[7] LC_PAPER=en_US.UTF-8 LC_NAME=C
[9] LC_ADDRESS=C LC_TELEPHONE=C
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] ggtext_0.1.2 khroma_1.9.0 ggnewscale_0.4.8
[4] terra_1.7-65 sf_1.0-9 rnaturalearth_0.1.0
[7] geomtextpath_0.1.1 colorspace_2.0-3 marelac_2.1.10
[10] shape_1.4.6 ggforce_0.4.1 metR_0.13.0
[13] scico_1.3.1 patchwork_1.1.2 collapse_1.8.9
[16] forcats_0.5.2 stringr_1.5.0 dplyr_1.1.3
[19] purrr_1.0.2 readr_2.1.3 tidyr_1.3.0
[22] tibble_3.2.1 ggplot2_3.4.4 tidyverse_1.3.2
[25] workflowr_1.7.0
loaded via a namespace (and not attached):
[1] googledrive_2.0.0 ellipsis_0.3.2 class_7.3-20
[4] rprojroot_2.0.3 markdown_1.4 fs_1.5.2
[7] gridtext_0.1.5 rstudioapi_0.15.0 proxy_0.4-27
[10] farver_2.1.1 bit64_4.0.5 fansi_1.0.3
[13] lubridate_1.9.0 xml2_1.3.3 splines_4.2.2
[16] codetools_0.2-18 cachem_1.0.6 knitr_1.41
[19] polyclip_1.10-4 jsonlite_1.8.3 gsw_1.1-1
[22] broom_1.0.5 dbplyr_2.2.1 compiler_4.2.2
[25] httr_1.4.4 backports_1.4.1 Matrix_1.5-3
[28] assertthat_0.2.1 fastmap_1.1.0 gargle_1.2.1
[31] cli_3.6.1 later_1.3.0 tweenr_2.0.2
[34] htmltools_0.5.3 tools_4.2.2 rnaturalearthdata_0.1.0
[37] gtable_0.3.1 glue_1.6.2 Rcpp_1.0.11
[40] cellranger_1.1.0 jquerylib_0.1.4 vctrs_0.6.4
[43] nlme_3.1-160 xfun_0.35 ps_1.7.2
[46] rvest_1.0.3 timechange_0.1.1 lifecycle_1.0.3
[49] googlesheets4_1.0.1 oce_1.7-10 getPass_0.2-2
[52] MASS_7.3-58.1 scales_1.2.1 vroom_1.6.0
[55] hms_1.1.2 promises_1.2.0.1 parallel_4.2.2
[58] yaml_2.3.6 memoise_2.0.1 sass_0.4.4
[61] stringi_1.7.8 highr_0.9 e1071_1.7-12
[64] checkmate_2.1.0 commonmark_1.8.1 rlang_1.1.1
[67] pkgconfig_2.0.3 systemfonts_1.0.4 evaluate_0.18
[70] lattice_0.20-45 SolveSAPHE_2.1.0 labeling_0.4.2
[73] bit_4.0.5 processx_3.8.0 tidyselect_1.2.0
[76] seacarb_3.3.1 magrittr_2.0.3 R6_2.5.1
[79] generics_0.1.3 DBI_1.1.3 mgcv_1.8-41
[82] pillar_1.9.0 haven_2.5.1 whisker_0.4
[85] withr_2.5.0 units_0.8-0 sp_1.5-1
[88] modelr_0.1.10 crayon_1.5.2 KernSmooth_2.23-20
[91] utf8_1.2.2 tzdb_0.3.0 rmarkdown_2.18
[94] grid_4.2.2 readxl_1.4.1 data.table_1.14.6
[97] callr_3.7.3 git2r_0.30.1 reprex_2.0.2
[100] digest_0.6.30 classInt_0.4-8 httpuv_1.6.6
[103] textshaping_0.3.6 munsell_0.5.0 bslib_0.4.1