Last updated: 2021-01-25

Checks: 7 0

Knit directory: emlr_mod_v_XXX/

This reproducible R Markdown analysis was created with workflowr (version 1.6.2). 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(20200707) 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 c41c01f. 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:    .Rproj.user/

Unstaged changes:
    Modified:   data/auxillary/params_local.rds

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/eMLR_assumption_testing.Rmd) and HTML (docs/eMLR_assumption_testing.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 c569946 Donghe-Zhu 2021-01-24 Build site.
html a2f0d56 Donghe-Zhu 2021-01-23 Build site.
html 28509fc Donghe-Zhu 2021-01-23 Build site.
html 4c28e4a Donghe-Zhu 2021-01-22 Build site.
html 24cc264 jens-daniel-mueller 2021-01-22 cleaned /docs before creating copies
html 88eb28f Donghe-Zhu 2021-01-21 Build site.
html 2679490 Donghe-Zhu 2021-01-21 Build site.
html 7891955 Donghe-Zhu 2021-01-21 Build site.
html d4cf1cb Donghe-Zhu 2021-01-21 Build site.
html 1f3e5b6 jens-daniel-mueller 2021-01-20 Build site.
html 0e7bdf1 jens-daniel-mueller 2021-01-15 cleaning template repository
html 73cbef3 jens-daniel-mueller 2021-01-15 Build site.
html 4571843 jens-daniel-mueller 2021-01-14 revision and html deleted for template copying
html 23151cd jens-daniel-mueller 2021-01-14 Build site.
html b3564aa jens-daniel-mueller 2021-01-14 Build site.
html 8d032c3 jens-daniel-mueller 2021-01-14 Build site.
html 022871c Donghe-Zhu 2021-01-13 Build site.
Rmd d44f36f Donghe-Zhu 2021-01-13 reorder analysis final
html 17dee1d jens-daniel-mueller 2021-01-13 Build site.
html a076226 Donghe-Zhu 2021-01-11 Build site.
Rmd 52eff18 Donghe-Zhu 2021-01-09 Implemet model_run and subsetting
html 7cdea0c jens-daniel-mueller 2021-01-06 Build site.
html fa85b93 jens-daniel-mueller 2021-01-06 Build site.
html e5cb81a Donghe-Zhu 2021-01-05 Build site.
html a499f10 Donghe-Zhu 2021-01-05 Build site.
Rmd 715bdb4 Donghe-Zhu 2021-01-02 model modification
html fb8a752 Donghe-Zhu 2020-12-23 Build site.
Rmd 82e3c9c Donghe-Zhu 2020-12-23 first build after creating model template
html 8fae0b2 Donghe-Zhu 2020-12-21 Build site.
html c8b76b3 jens-daniel-mueller 2020-12-19 Build site.
Rmd b5fedce jens-daniel-mueller 2020-12-19 first build after creating model template
Rmd 8e8abf5 Jens Müller 2020-12-18 Initial commit

1 Required data

Required are:

  • cleaned and prepared GLODAP-based synthetic cmorized model subsetting file
GLODAP <-
  read_csv(paste(path_version_data,
                 "GLODAPv2.2020_MLR_fitting_ready.csv",
                 sep = ""))

2 Predictor correlation

The correlation between:

  • pairs of seven potential predictor variables and
  • C* and seven potential predictor variables

were investigated based on:

  • property-property plots and
  • calculated correlation coefficients.

2.1 Correlation plots

For an overview, a random subset of data from all eras was plotted separately for both basins, with color indicating neutral density slabs (high density = dark-purple color).

for (i_basin in unique(GLODAP$basin)) {
# i_basin <- unique(GLODAP$basin)[1]

print(
GLODAP %>% 
  filter(basin == i_basin) %>% 
  sample_frac(0.05) %>% 
  ggpairs(columns = c(params_local$MLR_target,
                      params_local$MLR_predictors),
          upper = "blank",
          ggplot2::aes(col = gamma_slab, fill = gamma_slab, alpha = 0.01)) +
      scale_fill_viridis_d(direction = -1) +
      scale_color_viridis_d(direction = -1) +
      labs(title = paste("Basin:", i_basin ,"| era: all | subsample size: 5 % of",
                         nrow(GLODAP %>% filter(basin == i_basin))))
)
}

Version Author Date
c569946 Donghe-Zhu 2021-01-24
a2f0d56 Donghe-Zhu 2021-01-23
28509fc Donghe-Zhu 2021-01-23
4c28e4a Donghe-Zhu 2021-01-22
24cc264 jens-daniel-mueller 2021-01-22
7891955 Donghe-Zhu 2021-01-21
d4cf1cb Donghe-Zhu 2021-01-21
1f3e5b6 jens-daniel-mueller 2021-01-20
0e7bdf1 jens-daniel-mueller 2021-01-15
4571843 jens-daniel-mueller 2021-01-14
b3564aa jens-daniel-mueller 2021-01-14
8d032c3 jens-daniel-mueller 2021-01-14
17dee1d jens-daniel-mueller 2021-01-13
7cdea0c jens-daniel-mueller 2021-01-06
fa85b93 jens-daniel-mueller 2021-01-06
e5cb81a Donghe-Zhu 2021-01-05
a499f10 Donghe-Zhu 2021-01-05
fb8a752 Donghe-Zhu 2020-12-23
8fae0b2 Donghe-Zhu 2020-12-21
c8b76b3 jens-daniel-mueller 2020-12-19

Version Author Date
c569946 Donghe-Zhu 2021-01-24
a2f0d56 Donghe-Zhu 2021-01-23
28509fc Donghe-Zhu 2021-01-23
4c28e4a Donghe-Zhu 2021-01-22
24cc264 jens-daniel-mueller 2021-01-22
7891955 Donghe-Zhu 2021-01-21
d4cf1cb Donghe-Zhu 2021-01-21
1f3e5b6 jens-daniel-mueller 2021-01-20
0e7bdf1 jens-daniel-mueller 2021-01-15
4571843 jens-daniel-mueller 2021-01-14
b3564aa jens-daniel-mueller 2021-01-14
8d032c3 jens-daniel-mueller 2021-01-14
17dee1d jens-daniel-mueller 2021-01-13
7cdea0c jens-daniel-mueller 2021-01-06
fa85b93 jens-daniel-mueller 2021-01-06
e5cb81a Donghe-Zhu 2021-01-05
a499f10 Donghe-Zhu 2021-01-05
fb8a752 Donghe-Zhu 2020-12-23
8fae0b2 Donghe-Zhu 2020-12-21
c8b76b3 jens-daniel-mueller 2020-12-19

Individual correlation plots for each basin, era and neutral density (gamma) slab are available at:

/nfs/kryo/work/jenmueller/emlr_cant/model/v_XXX/figures/Observations_correlation/

if (params_local$plot_all_figures == "y") {

for (i_basin in unique(GLODAP$basin)) {
  for (i_era in unique(GLODAP$era)) {
    # i_basin <- unique(GLODAP$basin)[1]
    # i_era   <- unique(GLODAP$era)[1]

    GLODAP_basin_era <- GLODAP %>%
      filter(basin == i_basin,
             era == i_era)
    
    for (i_gamma_slab in unique(GLODAP_basin_era$gamma_slab)) {
      # i_gamma_slab <- unique(GLODAP_basin_era$gamma_slab)[5]

      GLODAP_highlight <- GLODAP_basin_era %>%
        mutate(gamma_highlight = if_else(gamma_slab == i_gamma_slab,
                                         "in", "out")) %>%
        arrange(desc(gamma_highlight))
      
      p <- GLODAP_highlight %>%
        ggpairs(
          columns = c(params_local$MLR_target,
                      params_local$MLR_predictors),
          ggplot2::aes(
            col = gamma_highlight,
            fill = gamma_highlight,
            alpha = 0.01
          )
        ) +
        scale_fill_manual(values = c("red", "grey")) +
        scale_color_manual(values = c("red", "grey")) +
        labs(
          title = paste(
            i_era,
            "|",
            i_basin,
            "| Gamma slab",
            i_gamma_slab,
            "| # obs total",
            nrow(GLODAP_basin_era),
            "| # obs slab",
            nrow(GLODAP_highlight %>%
                   filter(gamma_highlight == "in"))
          )
        )
      
      png(
        filename = paste(
          path_version_figures,
          "Observations_correlation/",
          paste(
            "Predictor_correlation",
            i_era,
            i_basin,
            i_gamma_slab,
            ".png",
            sep = "_"
          ),
          sep = ""),
        width = 12,
        height = 12,
        units = "in",
        res = 300
      )
      
      print(p)
      
      dev.off()
      
    }
  }
}

}

2.2 Correlation assessment

2.2.1 Calculation of correlation coeffcients

Correlation coefficients were calculated individually within each slabs, era and basin.

for (i_basin in unique(GLODAP$basin)) {
  for (i_era in unique(GLODAP$era)) {
    # i_basin <- unique(GLODAP$basin)[1]
    # i_era   <- unique(GLODAP$era)[1]
    
    GLODAP_basin_era <- GLODAP %>%
      filter(basin == i_basin,
             era == i_era) %>%
      select(basin,
             era,
             gamma_slab,
             params_local$MLR_target,
             params_local$MLR_predictors)
    
    for (i_gamma_slab in unique(GLODAP_basin_era$gamma_slab)) {
      # i_gamma_slab <- unique(GLODAP_basin_era$gamma_slab)[5]
      print(i_gamma_slab)
      
      GLODAP_basin_era_slab <- GLODAP_basin_era %>%
        filter(gamma_slab == i_gamma_slab)
      
      # calculate correlation table
      cor_target_predictor_temp <- GLODAP_basin_era_slab %>%
        select(-c(basin, era, gamma_slab)) %>%
        correlate() %>%
        focus(params_local$MLR_target) %>%
        mutate(basin = i_basin,
               era = i_era,
               gamma_slab = i_gamma_slab)
      
      if (exists("cor_target_predictor")) {
        cor_target_predictor <-
          bind_rows(cor_target_predictor, cor_target_predictor_temp)
      }
      
      if (!exists("cor_target_predictor")) {
        cor_target_predictor <- cor_target_predictor_temp
      }
      
      
      cor_predictors_temp <- GLODAP_basin_era_slab %>%
        select(-c(basin, era, gamma_slab)) %>%
        correlate() %>%
        shave %>%
        stretch() %>%
        filter(!is.na(r),
               x != params_local$MLR_target,
               y != params_local$MLR_target) %>%
        mutate(pair = paste(x, y, sep = " + ")) %>%
        select(-c(x, y)) %>%
        mutate(basin = i_basin,
               era = i_era,
               gamma_slab = i_gamma_slab)
      
      if (exists("cor_predictors")) {
        cor_predictors <- bind_rows(cor_predictors, cor_predictors_temp)
      }
      
      if (!exists("cor_predictors")) {
        cor_predictors <- cor_predictors_temp
      }
      
      
      
    }
  }
}

rm(cor_predictors_temp, cor_target_predictor_temp,
   i_gamma_slab, i_era, i_basin,
   GLODAP_basin_era, GLODAP_basin_era_slab)

2.2.2 Predictor pairs

Below, the range of correlations coefficients for each predictor pair is plotted per basin (facet) and density slab (color). Note that the range indicates the min and max values of in total 3 calculated coefficients (one per era).

# calculate min, max, mean across all eras
cor_predictors_stats <- cor_predictors %>% 
  group_by(pair, basin, gamma_slab) %>% 
  summarise(mean_r = mean(r),
            min_r = min(r),
            max_r = max(r)) %>% 
  ungroup()

# plot figure
cor_predictors_stats %>% 
  mutate(pair = reorder(pair, mean_r)) %>%
  ggplot() +
  geom_vline(xintercept = c(-0.9, 0.9), col = "red") +
  geom_vline(xintercept = 0) +
  geom_linerange(
    aes(y = pair, xmin = min_r, xmax = max_r, col = gamma_slab),
    position = position_dodge(width = 0.6)) +
  facet_wrap(~basin) +
  scale_color_viridis_d(direction = -1) +
  labs(x = "correlation coefficient", y = "") +
  theme(legend.position = "top")

Version Author Date
c569946 Donghe-Zhu 2021-01-24
a2f0d56 Donghe-Zhu 2021-01-23
28509fc Donghe-Zhu 2021-01-23
4c28e4a Donghe-Zhu 2021-01-22
24cc264 jens-daniel-mueller 2021-01-22
7891955 Donghe-Zhu 2021-01-21
d4cf1cb Donghe-Zhu 2021-01-21
1f3e5b6 jens-daniel-mueller 2021-01-20
0e7bdf1 jens-daniel-mueller 2021-01-15
4571843 jens-daniel-mueller 2021-01-14
b3564aa jens-daniel-mueller 2021-01-14
8d032c3 jens-daniel-mueller 2021-01-14
17dee1d jens-daniel-mueller 2021-01-13
e5cb81a Donghe-Zhu 2021-01-05
a499f10 Donghe-Zhu 2021-01-05
8fae0b2 Donghe-Zhu 2020-12-21
c8b76b3 jens-daniel-mueller 2020-12-19
# print table
kable(cor_predictors_stats) %>%
  add_header_above() %>%
  kable_styling() %>%
  scroll_box(width = "100%", height = "400px")
pair basin gamma_slab mean_r min_r max_r
nitrate + phosphate Atlantic (-Inf,26] 0.6913320 0.6358544 0.7735436
nitrate + phosphate Atlantic (26,26.5] 0.8329157 0.8216064 0.8508597
nitrate + phosphate Atlantic (26.5,26.75] 0.9668921 0.9651352 0.9678758
nitrate + phosphate Atlantic (26.75,27] 0.9800420 0.9789957 0.9810574
nitrate + phosphate Atlantic (27,27.25] 0.9863334 0.9859656 0.9867931
nitrate + phosphate Atlantic (27.25,27.5] 0.9912444 0.9910142 0.9914977
nitrate + phosphate Atlantic (27.5,27.75] 0.9945081 0.9943694 0.9946066
nitrate + phosphate Atlantic (27.75,27.85] 0.9968880 0.9968477 0.9969657
nitrate + phosphate Atlantic (27.85,27.95] 0.9987997 0.9986913 0.9989229
nitrate + phosphate Atlantic (27.95,28.05] 0.9994197 0.9993947 0.9994373
nitrate + phosphate Atlantic (28.05,28.1] 0.9997863 0.9997740 0.9997996
nitrate + phosphate Atlantic (28.1,28.15] 0.9998491 0.9998415 0.9998560
nitrate + phosphate Atlantic (28.15,28.2] 0.9983882 0.9983039 0.9984844
nitrate + phosphate Atlantic (28.2, Inf] 0.9866101 0.9856099 0.9877020
nitrate + phosphate Indo-Pacific (-Inf,26] 0.9545388 0.9524337 0.9577585
nitrate + phosphate Indo-Pacific (26,26.5] 0.8699687 0.8678049 0.8742210
nitrate + phosphate Indo-Pacific (26.5,26.75] 0.8110580 0.8050182 0.8217624
nitrate + phosphate Indo-Pacific (26.75,27] 0.8767211 0.8724790 0.8836490
nitrate + phosphate Indo-Pacific (27,27.25] 0.9447745 0.9413047 0.9480273
nitrate + phosphate Indo-Pacific (27.25,27.5] 0.9619597 0.9611442 0.9627674
nitrate + phosphate Indo-Pacific (27.5,27.75] 0.9827379 0.9823686 0.9830756
nitrate + phosphate Indo-Pacific (27.75,27.85] 0.9957061 0.9953913 0.9958890
nitrate + phosphate Indo-Pacific (27.85,27.95] 0.9974660 0.9972014 0.9978710
nitrate + phosphate Indo-Pacific (27.95,28.05] 0.9990242 0.9989610 0.9990911
nitrate + phosphate Indo-Pacific (28.05,28.1] 0.9986147 0.9984581 0.9986949
nitrate + phosphate Indo-Pacific (28.1, Inf] 0.9951368 0.9950077 0.9952227
nitrate + phosphate_star Atlantic (-Inf,26] 0.1391998 0.0453209 0.2437980
nitrate + phosphate_star Atlantic (26,26.5] 0.4147133 0.3635791 0.4528847
nitrate + phosphate_star Atlantic (26.5,26.75] 0.2842813 0.2484607 0.3111819
nitrate + phosphate_star Atlantic (26.75,27] 0.0018870 -0.0148950 0.0150087
nitrate + phosphate_star Atlantic (27,27.25] 0.2106063 0.1764811 0.2474356
nitrate + phosphate_star Atlantic (27.25,27.5] 0.4045003 0.3874761 0.4139486
nitrate + phosphate_star Atlantic (27.5,27.75] 0.5925333 0.5859924 0.5984410
nitrate + phosphate_star Atlantic (27.75,27.85] 0.7466715 0.7265802 0.7636152
nitrate + phosphate_star Atlantic (27.85,27.95] 0.9088651 0.8973759 0.9216017
nitrate + phosphate_star Atlantic (27.95,28.05] 0.9028467 0.9017683 0.9049274
nitrate + phosphate_star Atlantic (28.05,28.1] 0.9350493 0.9314337 0.9379317
nitrate + phosphate_star Atlantic (28.1,28.15] 0.9665714 0.9640628 0.9680389
nitrate + phosphate_star Atlantic (28.15,28.2] 0.9785881 0.9780231 0.9791768
nitrate + phosphate_star Atlantic (28.2, Inf] 0.9587032 0.9572841 0.9595635
nitrate + phosphate_star Indo-Pacific (-Inf,26] 0.7302540 0.7281127 0.7335866
nitrate + phosphate_star Indo-Pacific (26,26.5] 0.5635486 0.5605704 0.5680878
nitrate + phosphate_star Indo-Pacific (26.5,26.75] 0.5741730 0.5667133 0.5828366
nitrate + phosphate_star Indo-Pacific (26.75,27] 0.7061532 0.6930122 0.7180860
nitrate + phosphate_star Indo-Pacific (27,27.25] 0.7905769 0.7779339 0.8048866
nitrate + phosphate_star Indo-Pacific (27.25,27.5] 0.4486140 0.3938967 0.4896526
nitrate + phosphate_star Indo-Pacific (27.5,27.75] -0.2035846 -0.2679761 -0.1476173
nitrate + phosphate_star Indo-Pacific (27.75,27.85] -0.5795626 -0.5841819 -0.5709257
nitrate + phosphate_star Indo-Pacific (27.85,27.95] -0.3993262 -0.4229179 -0.3816230
nitrate + phosphate_star Indo-Pacific (27.95,28.05] -0.3507523 -0.3820853 -0.3241588
nitrate + phosphate_star Indo-Pacific (28.05,28.1] -0.2649867 -0.3323095 -0.2116992
nitrate + phosphate_star Indo-Pacific (28.1, Inf] 0.1672575 0.1388275 0.1852209
nitrate + silicate Atlantic (-Inf,26] 0.5921507 0.5624675 0.6098511
nitrate + silicate Atlantic (26,26.5] 0.5610505 0.5497846 0.5669760
nitrate + silicate Atlantic (26.5,26.75] 0.6989596 0.6753673 0.7239189
nitrate + silicate Atlantic (26.75,27] 0.8608930 0.8535129 0.8659875
nitrate + silicate Atlantic (27,27.25] 0.8800101 0.8780550 0.8820966
nitrate + silicate Atlantic (27.25,27.5] 0.8713724 0.8683804 0.8730735
nitrate + silicate Atlantic (27.5,27.75] 0.8817783 0.8784194 0.8849732
nitrate + silicate Atlantic (27.75,27.85] 0.8613827 0.8604182 0.8632989
nitrate + silicate Atlantic (27.85,27.95] 0.9232382 0.9166427 0.9314203
nitrate + silicate Atlantic (27.95,28.05] 0.9714387 0.9705597 0.9722333
nitrate + silicate Atlantic (28.05,28.1] 0.9835191 0.9825409 0.9843418
nitrate + silicate Atlantic (28.1,28.15] 0.9860056 0.9855119 0.9864498
nitrate + silicate Atlantic (28.15,28.2] 0.9262125 0.9246027 0.9286829
nitrate + silicate Atlantic (28.2, Inf] 0.6475740 0.6443481 0.6502341
nitrate + silicate Indo-Pacific (-Inf,26] 0.8591922 0.8567866 0.8616604
nitrate + silicate Indo-Pacific (26,26.5] 0.7921975 0.7869786 0.8008042
nitrate + silicate Indo-Pacific (26.5,26.75] 0.8328437 0.8284302 0.8383708
nitrate + silicate Indo-Pacific (26.75,27] 0.8862552 0.8827027 0.8901026
nitrate + silicate Indo-Pacific (27,27.25] 0.9464613 0.9436981 0.9487636
nitrate + silicate Indo-Pacific (27.25,27.5] 0.9655265 0.9645432 0.9662119
nitrate + silicate Indo-Pacific (27.5,27.75] 0.9815195 0.9808706 0.9819209
nitrate + silicate Indo-Pacific (27.75,27.85] 0.9910303 0.9904377 0.9915907
nitrate + silicate Indo-Pacific (27.85,27.95] 0.9911812 0.9909684 0.9913855
nitrate + silicate Indo-Pacific (27.95,28.05] 0.9923713 0.9922186 0.9926602
nitrate + silicate Indo-Pacific (28.05,28.1] 0.9915592 0.9911950 0.9918100
nitrate + silicate Indo-Pacific (28.1, Inf] 0.8433853 0.8430264 0.8436477
oxygen + nitrate Atlantic (-Inf,26] -0.7277492 -0.7677130 -0.6932852
oxygen + nitrate Atlantic (26,26.5] -0.8448134 -0.8550251 -0.8374737
oxygen + nitrate Atlantic (26.5,26.75] -0.9567288 -0.9588993 -0.9547212
oxygen + nitrate Atlantic (26.75,27] -0.9725731 -0.9749218 -0.9688177
oxygen + nitrate Atlantic (27,27.25] -0.9374237 -0.9439801 -0.9294704
oxygen + nitrate Atlantic (27.25,27.5] -0.7503680 -0.7740773 -0.7290471
oxygen + nitrate Atlantic (27.5,27.75] -0.4994478 -0.5029668 -0.4961875
oxygen + nitrate Atlantic (27.75,27.85] -0.1619103 -0.1694771 -0.1487605
oxygen + nitrate Atlantic (27.85,27.95] -0.1443980 -0.2229665 -0.0630307
oxygen + nitrate Atlantic (27.95,28.05] 0.1704356 0.1522156 0.2037051
oxygen + nitrate Atlantic (28.05,28.1] -0.0053873 -0.0625408 0.0346918
oxygen + nitrate Atlantic (28.1,28.15] -0.4807099 -0.5275338 -0.4307440
oxygen + nitrate Atlantic (28.15,28.2] -0.6758634 -0.7005971 -0.6476973
oxygen + nitrate Atlantic (28.2, Inf] -0.5868170 -0.6159981 -0.5669649
oxygen + nitrate Indo-Pacific (-Inf,26] -0.8522860 -0.8541146 -0.8501660
oxygen + nitrate Indo-Pacific (26,26.5] -0.7802680 -0.7853656 -0.7774702
oxygen + nitrate Indo-Pacific (26.5,26.75] -0.7200968 -0.7281158 -0.7150140
oxygen + nitrate Indo-Pacific (26.75,27] -0.7765695 -0.7851821 -0.7672919
oxygen + nitrate Indo-Pacific (27,27.25] -0.8985214 -0.9041961 -0.8937398
oxygen + nitrate Indo-Pacific (27.25,27.5] -0.9379291 -0.9388753 -0.9370367
oxygen + nitrate Indo-Pacific (27.5,27.75] -0.9622012 -0.9623230 -0.9620937
oxygen + nitrate Indo-Pacific (27.75,27.85] -0.9866511 -0.9873423 -0.9857506
oxygen + nitrate Indo-Pacific (27.85,27.95] -0.9847734 -0.9855683 -0.9843582
oxygen + nitrate Indo-Pacific (27.95,28.05] -0.9780106 -0.9781725 -0.9777306
oxygen + nitrate Indo-Pacific (28.05,28.1] -0.9814688 -0.9817678 -0.9808937
oxygen + nitrate Indo-Pacific (28.1, Inf] -0.9824289 -0.9830599 -0.9814650
oxygen + phosphate Atlantic (-Inf,26] -0.8561784 -0.8717413 -0.8430916
oxygen + phosphate Atlantic (26,26.5] -0.7491653 -0.7555511 -0.7382130
oxygen + phosphate Atlantic (26.5,26.75] -0.9124423 -0.9153254 -0.9074961
oxygen + phosphate Atlantic (26.75,27] -0.9429353 -0.9461338 -0.9377825
oxygen + phosphate Atlantic (27,27.25] -0.8843881 -0.8916201 -0.8759612
oxygen + phosphate Atlantic (27.25,27.5] -0.6693659 -0.6964633 -0.6465705
oxygen + phosphate Atlantic (27.5,27.75] -0.4181655 -0.4205410 -0.4154332
oxygen + phosphate Atlantic (27.75,27.85] -0.0906757 -0.0995574 -0.0768112
oxygen + phosphate Atlantic (27.85,27.95] -0.1050657 -0.1866565 -0.0210237
oxygen + phosphate Atlantic (27.95,28.05] 0.1922147 0.1742049 0.2254700
oxygen + phosphate Atlantic (28.05,28.1] 0.0041588 -0.0525694 0.0431054
oxygen + phosphate Atlantic (28.1,28.15] -0.4796577 -0.5259000 -0.4300347
oxygen + phosphate Atlantic (28.15,28.2] -0.6892768 -0.7139721 -0.6618653
oxygen + phosphate Atlantic (28.2, Inf] -0.6250852 -0.6444532 -0.6148223
oxygen + phosphate Indo-Pacific (-Inf,26] -0.8961381 -0.8992033 -0.8933659
oxygen + phosphate Indo-Pacific (26,26.5] -0.8944048 -0.8977700 -0.8915881
oxygen + phosphate Indo-Pacific (26.5,26.75] -0.9193688 -0.9215996 -0.9160231
oxygen + phosphate Indo-Pacific (26.75,27] -0.9183209 -0.9211212 -0.9133873
oxygen + phosphate Indo-Pacific (27,27.25] -0.9637935 -0.9653070 -0.9627970
oxygen + phosphate Indo-Pacific (27.25,27.5] -0.9727748 -0.9731888 -0.9724998
oxygen + phosphate Indo-Pacific (27.5,27.75] -0.9769531 -0.9772922 -0.9766083
oxygen + phosphate Indo-Pacific (27.75,27.85] -0.9880962 -0.9886064 -0.9873352
oxygen + phosphate Indo-Pacific (27.85,27.95] -0.9885168 -0.9888349 -0.9882310
oxygen + phosphate Indo-Pacific (27.95,28.05] -0.9790074 -0.9791879 -0.9787638
oxygen + phosphate Indo-Pacific (28.05,28.1] -0.9845374 -0.9846511 -0.9843399
oxygen + phosphate Indo-Pacific (28.1, Inf] -0.9844362 -0.9857160 -0.9828415
oxygen + phosphate_star Atlantic (-Inf,26] -0.0112741 -0.0477429 0.0360426
oxygen + phosphate_star Atlantic (26,26.5] -0.1376509 -0.1697933 -0.1051759
oxygen + phosphate_star Atlantic (26.5,26.75] -0.0576016 -0.0856505 -0.0234779
oxygen + phosphate_star Atlantic (26.75,27] 0.1887458 0.1676519 0.1995057
oxygen + phosphate_star Atlantic (27,27.25] 0.1312610 0.1144152 0.1475808
oxygen + phosphate_star Atlantic (27.25,27.5] 0.2976604 0.2806382 0.3206067
oxygen + phosphate_star Atlantic (27.5,27.75] 0.4004248 0.3971719 0.4041347
oxygen + phosphate_star Atlantic (27.75,27.85] 0.5345344 0.5062853 0.5551453
oxygen + phosphate_star Atlantic (27.85,27.95] 0.2785345 0.1718886 0.3830049
oxygen + phosphate_star Atlantic (27.95,28.05] 0.5769289 0.5637805 0.6004303
oxygen + phosphate_star Atlantic (28.05,28.1] 0.3485762 0.2870151 0.3956223
oxygen + phosphate_star Atlantic (28.1,28.15] -0.2407600 -0.2966581 -0.1760807
oxygen + phosphate_star Atlantic (28.15,28.2] -0.5170380 -0.5487991 -0.4818802
oxygen + phosphate_star Atlantic (28.2, Inf] -0.3846699 -0.4190077 -0.3659288
oxygen + phosphate_star Indo-Pacific (-Inf,26] -0.3930470 -0.4053500 -0.3820870
oxygen + phosphate_star Indo-Pacific (26,26.5] -0.2440000 -0.2506277 -0.2388408
oxygen + phosphate_star Indo-Pacific (26.5,26.75] -0.2948899 -0.3100719 -0.2676806
oxygen + phosphate_star Indo-Pacific (26.75,27] -0.4286243 -0.4449367 -0.4182219
oxygen + phosphate_star Indo-Pacific (27,27.25] -0.6225135 -0.6474225 -0.6036492
oxygen + phosphate_star Indo-Pacific (27.25,27.5] -0.2582455 -0.3045932 -0.1962707
oxygen + phosphate_star Indo-Pacific (27.5,27.75] 0.4017446 0.3478763 0.4619394
oxygen + phosphate_star Indo-Pacific (27.75,27.85] 0.6869012 0.6765029 0.6956954
oxygen + phosphate_star Indo-Pacific (27.85,27.95] 0.5410844 0.5225184 0.5637108
oxygen + phosphate_star Indo-Pacific (27.95,28.05] 0.5346810 0.5115765 0.5626931
oxygen + phosphate_star Indo-Pacific (28.05,28.1] 0.4386667 0.3910737 0.5002795
oxygen + phosphate_star Indo-Pacific (28.1, Inf] -0.0081614 -0.0209234 0.0167776
oxygen + silicate Atlantic (-Inf,26] 0.0336964 -0.0537481 0.1312885
oxygen + silicate Atlantic (26,26.5] -0.3371561 -0.3645273 -0.3006961
oxygen + silicate Atlantic (26.5,26.75] -0.6240514 -0.6468373 -0.6026019
oxygen + silicate Atlantic (26.75,27] -0.7813288 -0.7933887 -0.7737833
oxygen + silicate Atlantic (27,27.25] -0.7009099 -0.7114752 -0.6901284
oxygen + silicate Atlantic (27.25,27.5] -0.4351298 -0.4657007 -0.4138265
oxygen + silicate Atlantic (27.5,27.75] -0.1364067 -0.1459965 -0.1205925
oxygen + silicate Atlantic (27.75,27.85] 0.2397059 0.2225527 0.2562179
oxygen + silicate Atlantic (27.85,27.95] 0.1440387 0.0532541 0.2361192
oxygen + silicate Atlantic (27.95,28.05] 0.2346373 0.2162197 0.2646385
oxygen + silicate Atlantic (28.05,28.1] -0.0479350 -0.0945882 -0.0221648
oxygen + silicate Atlantic (28.1,28.15] -0.5564742 -0.5946930 -0.5152456
oxygen + silicate Atlantic (28.15,28.2] -0.8100394 -0.8291663 -0.7905672
oxygen + silicate Atlantic (28.2, Inf] -0.6224432 -0.6487729 -0.6054267
oxygen + silicate Indo-Pacific (-Inf,26] -0.7265419 -0.7305138 -0.7200307
oxygen + silicate Indo-Pacific (26,26.5] -0.6659754 -0.6673957 -0.6649379
oxygen + silicate Indo-Pacific (26.5,26.75] -0.6787892 -0.6869886 -0.6716638
oxygen + silicate Indo-Pacific (26.75,27] -0.7731259 -0.7773507 -0.7666923
oxygen + silicate Indo-Pacific (27,27.25] -0.9051840 -0.9059620 -0.9042366
oxygen + silicate Indo-Pacific (27.25,27.5] -0.9354014 -0.9357179 -0.9352160
oxygen + silicate Indo-Pacific (27.5,27.75] -0.9515936 -0.9521740 -0.9509306
oxygen + silicate Indo-Pacific (27.75,27.85] -0.9769314 -0.9776155 -0.9756210
oxygen + silicate Indo-Pacific (27.85,27.95] -0.9783478 -0.9788836 -0.9777939
oxygen + silicate Indo-Pacific (27.95,28.05] -0.9776202 -0.9780562 -0.9773212
oxygen + silicate Indo-Pacific (28.05,28.1] -0.9851658 -0.9857171 -0.9843002
oxygen + silicate Indo-Pacific (28.1, Inf] -0.8332339 -0.8360423 -0.8295480
phosphate + phosphate_star Atlantic (-Inf,26] 0.5250520 0.4582282 0.5774083
phosphate + phosphate_star Atlantic (26,26.5] 0.7588389 0.7309221 0.7756182
phosphate + phosphate_star Atlantic (26.5,26.75] 0.4609493 0.4412509 0.4814148
phosphate + phosphate_star Atlantic (26.75,27] 0.1488164 0.1327271 0.1605721
phosphate + phosphate_star Atlantic (27,27.25] 0.3463175 0.3162404 0.3789905
phosphate + phosphate_star Atlantic (27.25,27.5] 0.5096226 0.4933008 0.5202769
phosphate + phosphate_star Atlantic (27.5,27.75] 0.6649111 0.6599274 0.6698035
phosphate + phosphate_star Atlantic (27.75,27.85] 0.7928840 0.7748347 0.8076772
phosphate + phosphate_star Atlantic (27.85,27.95] 0.9250857 0.9154900 0.9357191
phosphate + phosphate_star Atlantic (27.95,28.05] 0.9124146 0.9112701 0.9144645
phosphate + phosphate_star Atlantic (28.05,28.1] 0.9385407 0.9346131 0.9415133
phosphate + phosphate_star Atlantic (28.1,28.15] 0.9670449 0.9644274 0.9684368
phosphate + phosphate_star Atlantic (28.15,28.2] 0.9765000 0.9757871 0.9771408
phosphate + phosphate_star Atlantic (28.2, Inf] 0.9609148 0.9585296 0.9643142
phosphate + phosphate_star Indo-Pacific (-Inf,26] 0.7602704 0.7565811 0.7644660
phosphate + phosphate_star Indo-Pacific (26,26.5] 0.6519482 0.6488668 0.6555652
phosphate + phosphate_star Indo-Pacific (26.5,26.75] 0.6469652 0.6316892 0.6547737
phosphate + phosphate_star Indo-Pacific (26.75,27] 0.7511701 0.7421574 0.7595747
phosphate + phosphate_star Indo-Pacific (27,27.25] 0.8086155 0.7966290 0.8239674
phosphate + phosphate_star Indo-Pacific (27.25,27.5] 0.4748480 0.4192468 0.5175535
phosphate + phosphate_star Indo-Pacific (27.5,27.75] -0.1973377 -0.2604249 -0.1413155
phosphate + phosphate_star Indo-Pacific (27.75,27.85] -0.5669797 -0.5729218 -0.5565211
phosphate + phosphate_star Indo-Pacific (27.85,27.95] -0.4078420 -0.4322318 -0.3896299
phosphate + phosphate_star Indo-Pacific (27.95,28.05] -0.3512979 -0.3812845 -0.3259960
phosphate + phosphate_star Indo-Pacific (28.05,28.1] -0.2747125 -0.3413173 -0.2227075
phosphate + phosphate_star Indo-Pacific (28.1, Inf] 0.1835974 0.1518542 0.2049764
sal + nitrate Atlantic (-Inf,26] -0.6745164 -0.6845712 -0.6657979
sal + nitrate Atlantic (26,26.5] -0.4262512 -0.4674110 -0.3860388
sal + nitrate Atlantic (26.5,26.75] 0.1902400 0.1732906 0.2220760
sal + nitrate Atlantic (26.75,27] 0.3985253 0.3924883 0.4104851
sal + nitrate Atlantic (27,27.25] 0.2442075 0.1938315 0.2980741
sal + nitrate Atlantic (27.25,27.5] -0.0063061 -0.0563914 0.0541962
sal + nitrate Atlantic (27.5,27.75] 0.2213963 0.1839875 0.2693849
sal + nitrate Atlantic (27.75,27.85] -0.3534892 -0.3961882 -0.3204810
sal + nitrate Atlantic (27.85,27.95] -0.6079697 -0.6345310 -0.5946473
sal + nitrate Atlantic (27.95,28.05] -0.8453962 -0.8520500 -0.8364979
sal + nitrate Atlantic (28.05,28.1] -0.9150235 -0.9174325 -0.9137779
sal + nitrate Atlantic (28.1,28.15] -0.9553978 -0.9576818 -0.9540523
sal + nitrate Atlantic (28.15,28.2] -0.9580031 -0.9600778 -0.9553757
sal + nitrate Atlantic (28.2, Inf] -0.7910473 -0.7984536 -0.7832206
sal + nitrate Indo-Pacific (-Inf,26] -0.3670441 -0.3692076 -0.3650932
sal + nitrate Indo-Pacific (26,26.5] -0.4023262 -0.4056480 -0.3978450
sal + nitrate Indo-Pacific (26.5,26.75] -0.4361355 -0.4388556 -0.4342895
sal + nitrate Indo-Pacific (26.75,27] -0.5862602 -0.6040734 -0.5735445
sal + nitrate Indo-Pacific (27,27.25] -0.7526178 -0.7590138 -0.7467659
sal + nitrate Indo-Pacific (27.25,27.5] -0.4286436 -0.4742571 -0.3778009
sal + nitrate Indo-Pacific (27.5,27.75] 0.4176335 0.3764700 0.4764062
sal + nitrate Indo-Pacific (27.75,27.85] 0.7579713 0.7463217 0.7674463
sal + nitrate Indo-Pacific (27.85,27.95] 0.7703251 0.7698279 0.7708326
sal + nitrate Indo-Pacific (27.95,28.05] 0.8048904 0.7929514 0.8166602
sal + nitrate Indo-Pacific (28.05,28.1] 0.8205091 0.8031262 0.8344112
sal + nitrate Indo-Pacific (28.1, Inf] 0.3807919 0.3660197 0.3933452
sal + oxygen Atlantic (-Inf,26] 0.1929090 0.1224125 0.2589550
sal + oxygen Atlantic (26,26.5] 0.0852776 0.0611083 0.1308298
sal + oxygen Atlantic (26.5,26.75] -0.3759720 -0.3997569 -0.3629365
sal + oxygen Atlantic (26.75,27] -0.5299677 -0.5379202 -0.5182205
sal + oxygen Atlantic (27,27.25] -0.4917114 -0.5218653 -0.4639936
sal + oxygen Atlantic (27.25,27.5] -0.5742084 -0.5843886 -0.5686286
sal + oxygen Atlantic (27.5,27.75] -0.7995414 -0.8078733 -0.7948244
sal + oxygen Atlantic (27.75,27.85] -0.8226487 -0.8377622 -0.7950878
sal + oxygen Atlantic (27.85,27.95] -0.6346908 -0.7190517 -0.5575949
sal + oxygen Atlantic (27.95,28.05] -0.5640265 -0.5865256 -0.5495736
sal + oxygen Atlantic (28.05,28.1] -0.3420075 -0.3835030 -0.2896041
sal + oxygen Atlantic (28.1,28.15] 0.2356065 0.1752905 0.2888921
sal + oxygen Atlantic (28.15,28.2] 0.4672493 0.4323411 0.4914864
sal + oxygen Atlantic (28.2, Inf] 0.1331690 0.0953505 0.1709365
sal + oxygen Indo-Pacific (-Inf,26] 0.0147485 0.0111770 0.0213732
sal + oxygen Indo-Pacific (26,26.5] -0.0288456 -0.0301876 -0.0271944
sal + oxygen Indo-Pacific (26.5,26.75] 0.0009175 -0.0087445 0.0081880
sal + oxygen Indo-Pacific (26.75,27] 0.2124091 0.2039854 0.2188715
sal + oxygen Indo-Pacific (27,27.25] 0.5273612 0.5130528 0.5474044
sal + oxygen Indo-Pacific (27.25,27.5] 0.2261064 0.1717269 0.2761940
sal + oxygen Indo-Pacific (27.5,27.75] -0.5702745 -0.6263395 -0.5288256
sal + oxygen Indo-Pacific (27.75,27.85] -0.8300173 -0.8341324 -0.8269411
sal + oxygen Indo-Pacific (27.85,27.95] -0.8425844 -0.8442441 -0.8401462
sal + oxygen Indo-Pacific (27.95,28.05] -0.8868084 -0.8948460 -0.8790186
sal + oxygen Indo-Pacific (28.05,28.1] -0.9017968 -0.9095186 -0.8913665
sal + oxygen Indo-Pacific (28.1, Inf] -0.4544992 -0.4681646 -0.4392302
sal + phosphate Atlantic (-Inf,26] -0.2911109 -0.3888854 -0.2351049
sal + phosphate Atlantic (26,26.5] -0.6415071 -0.6619704 -0.6136488
sal + phosphate Atlantic (26.5,26.75] 0.0130512 0.0005468 0.0334390
sal + phosphate Atlantic (26.75,27] 0.2815793 0.2708340 0.2971710
sal + phosphate Atlantic (27,27.25] 0.1089767 0.0560839 0.1651019
sal + phosphate Atlantic (27.25,27.5] -0.1238997 -0.1728969 -0.0617804
sal + phosphate Atlantic (27.5,27.75] 0.1264645 0.0886744 0.1740041
sal + phosphate Atlantic (27.75,27.85] -0.4203209 -0.4607403 -0.3887917
sal + phosphate Atlantic (27.85,27.95] -0.6392639 -0.6642959 -0.6243918
sal + phosphate Atlantic (27.95,28.05] -0.8570723 -0.8633370 -0.8481127
sal + phosphate Atlantic (28.05,28.1] -0.9197810 -0.9222922 -0.9181476
sal + phosphate Atlantic (28.1,28.15] -0.9557962 -0.9583677 -0.9543802
sal + phosphate Atlantic (28.15,28.2] -0.9460025 -0.9487662 -0.9428381
sal + phosphate Atlantic (28.2, Inf] -0.6991414 -0.7060614 -0.6950667
sal + phosphate Indo-Pacific (-Inf,26] -0.3535559 -0.3558418 -0.3499962
sal + phosphate Indo-Pacific (26,26.5] -0.3782104 -0.3830931 -0.3706121
sal + phosphate Indo-Pacific (26.5,26.75] -0.3629457 -0.3662674 -0.3585739
sal + phosphate Indo-Pacific (26.75,27] -0.5310904 -0.5483642 -0.5154593
sal + phosphate Indo-Pacific (27,27.25] -0.7053193 -0.7164621 -0.6963493
sal + phosphate Indo-Pacific (27.25,27.5] -0.3993491 -0.4490935 -0.3442137
sal + phosphate Indo-Pacific (27.5,27.75] 0.4195491 0.3749865 0.4793682
sal + phosphate Indo-Pacific (27.75,27.85] 0.7489016 0.7407569 0.7566652
sal + phosphate Indo-Pacific (27.85,27.95] 0.7743361 0.7727415 0.7756260
sal + phosphate Indo-Pacific (27.95,28.05] 0.8147132 0.8040411 0.8254605
sal + phosphate Indo-Pacific (28.05,28.1] 0.8380885 0.8226606 0.8512550
sal + phosphate Indo-Pacific (28.1, Inf] 0.4458058 0.4314369 0.4581853
sal + phosphate_star Atlantic (-Inf,26] -0.2430926 -0.3278989 -0.1505424
sal + phosphate_star Atlantic (26,26.5] -0.8757327 -0.8923127 -0.8670023
sal + phosphate_star Atlantic (26.5,26.75] -0.7839335 -0.8038140 -0.7735610
sal + phosphate_star Atlantic (26.75,27] -0.7433979 -0.7666103 -0.7264066
sal + phosphate_star Atlantic (27,27.25] -0.7569740 -0.7746242 -0.7327742
sal + phosphate_star Atlantic (27.25,27.5] -0.8238016 -0.8534970 -0.7910246
sal + phosphate_star Atlantic (27.5,27.75] -0.5298907 -0.5641172 -0.4935860
sal + phosphate_star Atlantic (27.75,27.85] -0.8603089 -0.8704549 -0.8535605
sal + phosphate_star Atlantic (27.85,27.95] -0.8603273 -0.8706289 -0.8440294
sal + phosphate_star Atlantic (27.95,28.05] -0.9485600 -0.9536619 -0.9426898
sal + phosphate_star Atlantic (28.05,28.1] -0.9800714 -0.9805493 -0.9791847
sal + phosphate_star Atlantic (28.1,28.15] -0.9890491 -0.9911631 -0.9867078
sal + phosphate_star Atlantic (28.15,28.2] -0.9788088 -0.9807036 -0.9759401
sal + phosphate_star Atlantic (28.2, Inf] -0.7796586 -0.7866398 -0.7676352
sal + phosphate_star Indo-Pacific (-Inf,26] -0.7110137 -0.7155861 -0.7075781
sal + phosphate_star Indo-Pacific (26,26.5] -0.8690164 -0.8758677 -0.8647775
sal + phosphate_star Indo-Pacific (26.5,26.75] -0.8797529 -0.8912219 -0.8718460
sal + phosphate_star Indo-Pacific (26.75,27] -0.8580166 -0.8763250 -0.8488207
sal + phosphate_star Indo-Pacific (27,27.25] -0.9066968 -0.9100266 -0.9032651
sal + phosphate_star Indo-Pacific (27.25,27.5] -0.8072122 -0.8239302 -0.7797753
sal + phosphate_star Indo-Pacific (27.5,27.75] -0.8208790 -0.8351081 -0.8114991
sal + phosphate_star Indo-Pacific (27.75,27.85] -0.9065033 -0.9181091 -0.8996453
sal + phosphate_star Indo-Pacific (27.85,27.95] -0.7818333 -0.8027658 -0.7683643
sal + phosphate_star Indo-Pacific (27.95,28.05] -0.6961295 -0.7067002 -0.6885578
sal + phosphate_star Indo-Pacific (28.05,28.1] -0.6512503 -0.6744568 -0.6344230
sal + phosphate_star Indo-Pacific (28.1, Inf] -0.0060324 -0.0273991 0.0077986
sal + silicate Atlantic (-Inf,26] -0.7666791 -0.7830523 -0.7520002
sal + silicate Atlantic (26,26.5] 0.1487404 0.1172642 0.1710247
sal + silicate Atlantic (26.5,26.75] 0.3009731 0.2777178 0.3435170
sal + silicate Atlantic (26.75,27] 0.2050417 0.1942691 0.2263134
sal + silicate Atlantic (27,27.25] -0.0317965 -0.0844415 0.0293438
sal + silicate Atlantic (27.25,27.5] -0.2705320 -0.3189942 -0.2052475
sal + silicate Atlantic (27.5,27.75] -0.0844472 -0.1314136 -0.0360830
sal + silicate Atlantic (27.75,27.85] -0.6714757 -0.7067732 -0.6395989
sal + silicate Atlantic (27.85,27.95] -0.7944241 -0.8153488 -0.7679733
sal + silicate Atlantic (27.95,28.05] -0.8944690 -0.8983794 -0.8879716
sal + silicate Atlantic (28.05,28.1] -0.9056015 -0.9097075 -0.8980791
sal + silicate Atlantic (28.1,28.15] -0.9216547 -0.9260961 -0.9178318
sal + silicate Atlantic (28.15,28.2] -0.7961999 -0.8044057 -0.7890895
sal + silicate Atlantic (28.2, Inf] -0.1076821 -0.1117152 -0.1022324
sal + silicate Indo-Pacific (-Inf,26] -0.5419447 -0.5467874 -0.5333976
sal + silicate Indo-Pacific (26,26.5] -0.5840050 -0.5893446 -0.5798730
sal + silicate Indo-Pacific (26.5,26.75] -0.6111466 -0.6174231 -0.6047020
sal + silicate Indo-Pacific (26.75,27] -0.6779054 -0.6898384 -0.6666455
sal + silicate Indo-Pacific (27,27.25] -0.7740539 -0.7842916 -0.7640305
sal + silicate Indo-Pacific (27.25,27.5] -0.4965759 -0.5407315 -0.4446429
sal + silicate Indo-Pacific (27.5,27.75] 0.3570432 0.3095308 0.4206851
sal + silicate Indo-Pacific (27.75,27.85] 0.7269077 0.7170648 0.7361142
sal + silicate Indo-Pacific (27.85,27.95] 0.7702858 0.7681153 0.7738050
sal + silicate Indo-Pacific (27.95,28.05] 0.8291528 0.8172643 0.8405078
sal + silicate Indo-Pacific (28.05,28.1] 0.8549575 0.8415226 0.8651257
sal + silicate Indo-Pacific (28.1, Inf] 0.7352861 0.7218278 0.7465952
sal + temp Atlantic (-Inf,26] 0.6604365 0.6490670 0.6796755
sal + temp Atlantic (26,26.5] 0.9581285 0.9550581 0.9602678
sal + temp Atlantic (26.5,26.75] 0.9696455 0.9677213 0.9730188
sal + temp Atlantic (26.75,27] 0.9722644 0.9697470 0.9739595
sal + temp Atlantic (27,27.25] 0.9657251 0.9653764 0.9660299
sal + temp Atlantic (27.25,27.5] 0.9738815 0.9727263 0.9750673
sal + temp Atlantic (27.5,27.75] 0.9675060 0.9667786 0.9685357
sal + temp Atlantic (27.75,27.85] 0.9868502 0.9864795 0.9870834
sal + temp Atlantic (27.85,27.95] 0.9808757 0.9764118 0.9833204
sal + temp Atlantic (27.95,28.05] 0.9783842 0.9775270 0.9792728
sal + temp Atlantic (28.05,28.1] 0.9878533 0.9872414 0.9884037
sal + temp Atlantic (28.1,28.15] 0.9852256 0.9849785 0.9855916
sal + temp Atlantic (28.15,28.2] 0.9842337 0.9841219 0.9843017
sal + temp Atlantic (28.2, Inf] 0.9165717 0.9088456 0.9215384
sal + temp Indo-Pacific (-Inf,26] 0.8222864 0.8201284 0.8246266
sal + temp Indo-Pacific (26,26.5] 0.9550397 0.9533648 0.9562429
sal + temp Indo-Pacific (26.5,26.75] 0.9809594 0.9807897 0.9810751
sal + temp Indo-Pacific (26.75,27] 0.9807169 0.9797191 0.9815621
sal + temp Indo-Pacific (27,27.25] 0.9774531 0.9768436 0.9782897
sal + temp Indo-Pacific (27.25,27.5] 0.9219953 0.9202496 0.9231127
sal + temp Indo-Pacific (27.5,27.75] 0.8751626 0.8729929 0.8762932
sal + temp Indo-Pacific (27.75,27.85] 0.9725914 0.9709843 0.9743539
sal + temp Indo-Pacific (27.85,27.95] 0.9515315 0.9494284 0.9542711
sal + temp Indo-Pacific (27.95,28.05] 0.9479928 0.9472658 0.9486306
sal + temp Indo-Pacific (28.05,28.1] 0.9772837 0.9765829 0.9783311
sal + temp Indo-Pacific (28.1, Inf] 0.5287939 0.5131957 0.5414809
silicate + phosphate Atlantic (-Inf,26] -0.1108891 -0.2206780 0.0298299
silicate + phosphate Atlantic (26,26.5] 0.0365889 0.0024170 0.0775515
silicate + phosphate Atlantic (26.5,26.75] 0.5612932 0.5119232 0.6052302
silicate + phosphate Atlantic (26.75,27] 0.8472029 0.8421307 0.8528946
silicate + phosphate Atlantic (27,27.25] 0.9079993 0.9050683 0.9103604
silicate + phosphate Atlantic (27.25,27.5] 0.9087311 0.9065501 0.9103433
silicate + phosphate Atlantic (27.5,27.75] 0.9145860 0.9121076 0.9168095
silicate + phosphate Atlantic (27.75,27.85] 0.8956982 0.8945190 0.8974453
silicate + phosphate Atlantic (27.85,27.95] 0.9399793 0.9347996 0.9464344
silicate + phosphate Atlantic (27.95,28.05] 0.9769601 0.9764080 0.9774905
silicate + phosphate Atlantic (28.05,28.1] 0.9857783 0.9850959 0.9864724
silicate + phosphate Atlantic (28.1,28.15] 0.9879030 0.9875228 0.9883290
silicate + phosphate Atlantic (28.15,28.2] 0.9434590 0.9423331 0.9451416
silicate + phosphate Atlantic (28.2, Inf] 0.7602997 0.7531751 0.7665049
silicate + phosphate Indo-Pacific (-Inf,26] 0.8857214 0.8835508 0.8872260
silicate + phosphate Indo-Pacific (26,26.5] 0.8788954 0.8765037 0.8803575
silicate + phosphate Indo-Pacific (26.5,26.75] 0.8668316 0.8639792 0.8687257
silicate + phosphate Indo-Pacific (26.75,27] 0.9228419 0.9222433 0.9232013
silicate + phosphate Indo-Pacific (27,27.25] 0.9601517 0.9591100 0.9607539
silicate + phosphate Indo-Pacific (27.25,27.5] 0.9742334 0.9739650 0.9747515
silicate + phosphate Indo-Pacific (27.5,27.75] 0.9828278 0.9825550 0.9832300
silicate + phosphate Indo-Pacific (27.75,27.85] 0.9900289 0.9890934 0.9907512
silicate + phosphate Indo-Pacific (27.85,27.95] 0.9901705 0.9897852 0.9907545
silicate + phosphate Indo-Pacific (27.95,28.05] 0.9942249 0.9940157 0.9945228
silicate + phosphate Indo-Pacific (28.05,28.1] 0.9949536 0.9947761 0.9950677
silicate + phosphate Indo-Pacific (28.1, Inf] 0.8763306 0.8758965 0.8766181
silicate + phosphate_star Atlantic (-Inf,26] -0.1622457 -0.2465395 -0.0296334
silicate + phosphate_star Atlantic (26,26.5] -0.2772006 -0.3154765 -0.2309406
silicate + phosphate_star Atlantic (26.5,26.75] 0.0171249 -0.0689974 0.0738089
silicate + phosphate_star Atlantic (26.75,27] 0.1777978 0.1590836 0.1961224
silicate + phosphate_star Atlantic (27,27.25] 0.5195742 0.4863158 0.5508853
silicate + phosphate_star Atlantic (27.25,27.5] 0.6637930 0.6531089 0.6741270
silicate + phosphate_star Atlantic (27.5,27.75] 0.8104296 0.8014265 0.8212999
silicate + phosphate_star Atlantic (27.75,27.85] 0.9062917 0.8887847 0.9202127
silicate + phosphate_star Atlantic (27.85,27.95] 0.9626592 0.9587300 0.9681482
silicate + phosphate_star Atlantic (27.95,28.05] 0.9109425 0.9101774 0.9113690
silicate + phosphate_star Atlantic (28.05,28.1] 0.9071439 0.8982928 0.9130375
silicate + phosphate_star Atlantic (28.1,28.15] 0.9313512 0.9262375 0.9340488
silicate + phosphate_star Atlantic (28.15,28.2] 0.8737381 0.8708278 0.8763922
silicate + phosphate_star Atlantic (28.2, Inf] 0.6782217 0.6708205 0.6847330
silicate + phosphate_star Indo-Pacific (-Inf,26] 0.7717461 0.7693337 0.7756372
silicate + phosphate_star Indo-Pacific (26,26.5] 0.7766637 0.7759753 0.7771998
silicate + phosphate_star Indo-Pacific (26.5,26.75] 0.7897679 0.7877944 0.7928896
silicate + phosphate_star Indo-Pacific (26.75,27] 0.8171786 0.8086671 0.8250998
silicate + phosphate_star Indo-Pacific (27,27.25] 0.8209026 0.8031250 0.8395208
silicate + phosphate_star Indo-Pacific (27.25,27.5] 0.5092828 0.4547594 0.5500068
silicate + phosphate_star Indo-Pacific (27.5,27.75] -0.1545258 -0.2204315 -0.0947077
silicate + phosphate_star Indo-Pacific (27.75,27.85] -0.5542522 -0.5617871 -0.5426921
silicate + phosphate_star Indo-Pacific (27.85,27.95] -0.4011510 -0.4223966 -0.3865736
silicate + phosphate_star Indo-Pacific (27.95,28.05] -0.3688805 -0.3968661 -0.3438888
silicate + phosphate_star Indo-Pacific (28.05,28.1] -0.3040564 -0.3642864 -0.2562873
silicate + phosphate_star Indo-Pacific (28.1, Inf] 0.3255520 0.2934792 0.3496408
temp + nitrate Atlantic (-Inf,26] -0.7485724 -0.7713420 -0.7270565
temp + nitrate Atlantic (26,26.5] -0.4667928 -0.4897988 -0.4351283
temp + nitrate Atlantic (26.5,26.75] 0.0731254 0.0554299 0.1024870
temp + nitrate Atlantic (26.75,27] 0.3227586 0.3138258 0.3335092
temp + nitrate Atlantic (27,27.25] 0.2100522 0.1621964 0.2593383
temp + nitrate Atlantic (27.25,27.5] 0.0257733 -0.0217392 0.0877727
temp + nitrate Atlantic (27.5,27.75] 0.1841386 0.1548319 0.2219550
temp + nitrate Atlantic (27.75,27.85] -0.3593915 -0.3938022 -0.3302558
temp + nitrate Atlantic (27.85,27.95] -0.6288055 -0.6485388 -0.6182598
temp + nitrate Atlantic (27.95,28.05] -0.8135761 -0.8171270 -0.8082993
temp + nitrate Atlantic (28.05,28.1] -0.8822047 -0.8872176 -0.8784062
temp + nitrate Atlantic (28.1,28.15] -0.9222138 -0.9240236 -0.9199647
temp + nitrate Atlantic (28.15,28.2] -0.9346872 -0.9363621 -0.9319542
temp + nitrate Atlantic (28.2, Inf] -0.8773801 -0.8960090 -0.8542084
temp + nitrate Indo-Pacific (-Inf,26] -0.5290652 -0.5329882 -0.5259896
temp + nitrate Indo-Pacific (26,26.5] -0.4490882 -0.4587748 -0.4404546
temp + nitrate Indo-Pacific (26.5,26.75] -0.4200629 -0.4247306 -0.4160253
temp + nitrate Indo-Pacific (26.75,27] -0.5452372 -0.5620829 -0.5323334
temp + nitrate Indo-Pacific (27,27.25] -0.7311291 -0.7360005 -0.7275762
temp + nitrate Indo-Pacific (27.25,27.5] -0.4202068 -0.4549170 -0.3767198
temp + nitrate Indo-Pacific (27.5,27.75] 0.2843986 0.2443431 0.3365594
temp + nitrate Indo-Pacific (27.75,27.85] 0.7397505 0.7366436 0.7455224
temp + nitrate Indo-Pacific (27.85,27.95] 0.7284722 0.7259740 0.7315025
temp + nitrate Indo-Pacific (27.95,28.05] 0.7425987 0.7322251 0.7544084
temp + nitrate Indo-Pacific (28.05,28.1] 0.7886359 0.7699913 0.8075034
temp + nitrate Indo-Pacific (28.1, Inf] 0.7475709 0.7333673 0.7606749
temp + oxygen Atlantic (-Inf,26] 0.3979946 0.3705063 0.4413983
temp + oxygen Atlantic (26,26.5] 0.1233226 0.1090682 0.1503499
temp + oxygen Atlantic (26.5,26.75] -0.2713184 -0.2939578 -0.2548320
temp + oxygen Atlantic (26.75,27] -0.4763780 -0.4885931 -0.4616147
temp + oxygen Atlantic (27,27.25] -0.4703791 -0.4958803 -0.4466849
temp + oxygen Atlantic (27.25,27.5] -0.6001227 -0.6106631 -0.5915918
temp + oxygen Atlantic (27.5,27.75] -0.7949890 -0.8009074 -0.7900978
temp + oxygen Atlantic (27.75,27.85] -0.8310991 -0.8444834 -0.8080335
temp + oxygen Atlantic (27.85,27.95] -0.6439609 -0.7172953 -0.5663509
temp + oxygen Atlantic (27.95,28.05] -0.6604716 -0.6811646 -0.6470077
temp + oxygen Atlantic (28.05,28.1] -0.4122455 -0.4575020 -0.3598097
temp + oxygen Atlantic (28.1,28.15] 0.1479529 0.0849788 0.1992746
temp + oxygen Atlantic (28.15,28.2] 0.3943612 0.3571092 0.4240782
temp + oxygen Atlantic (28.2, Inf] 0.2084701 0.1827059 0.2258639
temp + oxygen Indo-Pacific (-Inf,26] 0.1283236 0.1259078 0.1314939
temp + oxygen Indo-Pacific (26,26.5] 0.0062758 0.0017445 0.0138972
temp + oxygen Indo-Pacific (26.5,26.75] -0.0253249 -0.0381677 -0.0173516
temp + oxygen Indo-Pacific (26.75,27] 0.1489951 0.1415774 0.1560522
temp + oxygen Indo-Pacific (27,27.25] 0.4842826 0.4729073 0.5032893
temp + oxygen Indo-Pacific (27.25,27.5] 0.1791469 0.1333618 0.2162892
temp + oxygen Indo-Pacific (27.5,27.75] -0.4921021 -0.5410324 -0.4533547
temp + oxygen Indo-Pacific (27.75,27.85] -0.8205001 -0.8232390 -0.8159365
temp + oxygen Indo-Pacific (27.85,27.95] -0.8192782 -0.8230015 -0.8168048
temp + oxygen Indo-Pacific (27.95,28.05] -0.8513506 -0.8597950 -0.8447707
temp + oxygen Indo-Pacific (28.05,28.1] -0.8808155 -0.8932581 -0.8685937
temp + oxygen Indo-Pacific (28.1, Inf] -0.8445995 -0.8525667 -0.8364170
temp + phosphate Atlantic (-Inf,26] -0.6888977 -0.7521368 -0.6452803
temp + phosphate Atlantic (26,26.5] -0.6592327 -0.6685501 -0.6407175
temp + phosphate Atlantic (26.5,26.75] -0.0884151 -0.1000796 -0.0685467
temp + phosphate Atlantic (26.75,27] 0.2144376 0.2082332 0.2266958
temp + phosphate Atlantic (27,27.25] 0.0893949 0.0391779 0.1406970
temp + phosphate Atlantic (27.25,27.5] -0.0847624 -0.1316138 -0.0212447
temp + phosphate Atlantic (27.5,27.75] 0.0941057 0.0647368 0.1309799
temp + phosphate Atlantic (27.75,27.85] -0.4246572 -0.4569037 -0.3969581
temp + phosphate Atlantic (27.85,27.95] -0.6589005 -0.6764810 -0.6493754
temp + phosphate Atlantic (27.95,28.05] -0.8265632 -0.8304338 -0.8210796
temp + phosphate Atlantic (28.05,28.1] -0.8866884 -0.8918404 -0.8822770
temp + phosphate Atlantic (28.1,28.15] -0.9227688 -0.9243513 -0.9203422
temp + phosphate Atlantic (28.15,28.2] -0.9269409 -0.9289907 -0.9236192
temp + phosphate Atlantic (28.2, Inf] -0.8308890 -0.8492777 -0.8128560
temp + phosphate Indo-Pacific (-Inf,26] -0.4993205 -0.5037008 -0.4968231
temp + phosphate Indo-Pacific (26,26.5] -0.4262892 -0.4277956 -0.4246234
temp + phosphate Indo-Pacific (26.5,26.75] -0.3442073 -0.3487591 -0.3415577
temp + phosphate Indo-Pacific (26.75,27] -0.4862052 -0.5022879 -0.4710855
temp + phosphate Indo-Pacific (27,27.25] -0.6782463 -0.6879504 -0.6718818
temp + phosphate Indo-Pacific (27.25,27.5] -0.3827936 -0.4206433 -0.3366120
temp + phosphate Indo-Pacific (27.5,27.75] 0.3063070 0.2660524 0.3577065
temp + phosphate Indo-Pacific (27.75,27.85] 0.7323028 0.7276568 0.7374813
temp + phosphate Indo-Pacific (27.85,27.95] 0.7351505 0.7331591 0.7385016
temp + phosphate Indo-Pacific (27.95,28.05] 0.7492193 0.7402004 0.7597818
temp + phosphate Indo-Pacific (28.05,28.1] 0.8031850 0.7861968 0.8214039
temp + phosphate Indo-Pacific (28.1, Inf] 0.7667281 0.7508399 0.7815563
temp + phosphate_star Atlantic (-Inf,26] -0.6779711 -0.7302908 -0.6230139
temp + phosphate_star Atlantic (26,26.5] -0.8646134 -0.8784317 -0.8574674
temp + phosphate_star Atlantic (26.5,26.75] -0.8045621 -0.8240155 -0.7911259
temp + phosphate_star Atlantic (26.75,27] -0.7823216 -0.8028899 -0.7713480
temp + phosphate_star Atlantic (27,27.25] -0.7555835 -0.7762358 -0.7316394
temp + phosphate_star Atlantic (27.25,27.5] -0.8034838 -0.8353609 -0.7686559
temp + phosphate_star Atlantic (27.5,27.75] -0.5587843 -0.5875648 -0.5311938
temp + phosphate_star Atlantic (27.75,27.85] -0.8690431 -0.8748011 -0.8643248
temp + phosphate_star Atlantic (27.85,27.95] -0.8826153 -0.8900096 -0.8761503
temp + phosphate_star Atlantic (27.95,28.05] -0.9633930 -0.9648657 -0.9607528
temp + phosphate_star Atlantic (28.05,28.1] -0.9733564 -0.9748886 -0.9712625
temp + phosphate_star Atlantic (28.1,28.15] -0.9779750 -0.9786070 -0.9768462
temp + phosphate_star Atlantic (28.15,28.2] -0.9779772 -0.9794525 -0.9754261
temp + phosphate_star Atlantic (28.2, Inf] -0.9086166 -0.9237497 -0.8870265
temp + phosphate_star Indo-Pacific (-Inf,26] -0.8467833 -0.8503010 -0.8442997
temp + phosphate_star Indo-Pacific (26,26.5] -0.9137349 -0.9167031 -0.9111623
temp + phosphate_star Indo-Pacific (26.5,26.75] -0.8851309 -0.8959836 -0.8764429
temp + phosphate_star Indo-Pacific (26.75,27] -0.8613154 -0.8788271 -0.8521545
temp + phosphate_star Indo-Pacific (27,27.25] -0.9222417 -0.9265320 -0.9157792
temp + phosphate_star Indo-Pacific (27.25,27.5] -0.9159857 -0.9279149 -0.8973211
temp + phosphate_star Indo-Pacific (27.5,27.75] -0.9470870 -0.9538829 -0.9408860
temp + phosphate_star Indo-Pacific (27.75,27.85] -0.9341918 -0.9396733 -0.9298138
temp + phosphate_star Indo-Pacific (27.85,27.95] -0.8591334 -0.8734375 -0.8507479
temp + phosphate_star Indo-Pacific (27.95,28.05] -0.8047010 -0.8134910 -0.7989997
temp + phosphate_star Indo-Pacific (28.05,28.1] -0.7151794 -0.7349195 -0.6988595
temp + phosphate_star Indo-Pacific (28.1, Inf] -0.3611979 -0.3685599 -0.3514506
temp + silicate Atlantic (-Inf,26] -0.3651392 -0.3884488 -0.3529087
temp + silicate Atlantic (26,26.5] 0.1118548 0.0987413 0.1315408
temp + silicate Atlantic (26.5,26.75] 0.2050847 0.1819231 0.2505844
temp + silicate Atlantic (26.75,27] 0.1019821 0.0932263 0.1183748
temp + silicate Atlantic (27,27.25] -0.0781814 -0.1264101 -0.0235772
temp + silicate Atlantic (27.25,27.5] -0.2324566 -0.2805431 -0.1650125
temp + silicate Atlantic (27.5,27.75] -0.1267625 -0.1651374 -0.0883813
temp + silicate Atlantic (27.75,27.85] -0.6657131 -0.6950276 -0.6355765
temp + silicate Atlantic (27.85,27.95] -0.8039677 -0.8142140 -0.7907236
temp + silicate Atlantic (27.95,28.05] -0.8594938 -0.8621026 -0.8555638
temp + silicate Atlantic (28.05,28.1] -0.8655830 -0.8728005 -0.8532177
temp + silicate Atlantic (28.1,28.15] -0.8821692 -0.8857513 -0.8761624
temp + silicate Atlantic (28.15,28.2] -0.7813143 -0.7873503 -0.7746203
temp + silicate Atlantic (28.2, Inf] -0.3953665 -0.4063661 -0.3896145
temp + silicate Indo-Pacific (-Inf,26] -0.6017360 -0.6086808 -0.5952674
temp + silicate Indo-Pacific (26,26.5] -0.6075082 -0.6127084 -0.6040884
temp + silicate Indo-Pacific (26.5,26.75] -0.5992953 -0.6022474 -0.5934859
temp + silicate Indo-Pacific (26.75,27] -0.6495632 -0.6600895 -0.6388424
temp + silicate Indo-Pacific (27,27.25] -0.7595886 -0.7687879 -0.7515348
temp + silicate Indo-Pacific (27.25,27.5] -0.4739383 -0.5074598 -0.4301510
temp + silicate Indo-Pacific (27.5,27.75] 0.2406359 0.1968792 0.2943669
temp + silicate Indo-Pacific (27.75,27.85] 0.7102366 0.7055165 0.7156369
temp + silicate Indo-Pacific (27.85,27.95] 0.7217250 0.7200823 0.7237674
temp + silicate Indo-Pacific (27.95,28.05] 0.7645153 0.7539200 0.7756134
temp + silicate Indo-Pacific (28.05,28.1] 0.8228715 0.8086531 0.8371790
temp + silicate Indo-Pacific (28.1, Inf] 0.6401240 0.6178531 0.6589035
rm(cor_predictors, cor_predictors_stats)

2.2.3 C* vs individual predictors

Below, the range of correlations coefficients for C* with each predictor is plotted per basin (facet) and density slab (color). Note that the range indicates the min and max values of in total 3 calculated coefficients (one per era).

cor_target_predictor <- cor_target_predictor %>% 
  rename(predictor = term)

# calculate min, max, mean across all eras
cor_target_predictor_stats <- cor_target_predictor %>%
  select(-era) %>% 
  group_by(predictor, basin, gamma_slab) %>% 
  summarise_all(list(mean_r = mean, min_r = min, max_r = max)) %>% 
  ungroup()

# plot figure
cor_target_predictor_stats %>% 
  mutate(predictor = reorder(predictor, mean_r)) %>%
  ggplot() +
  geom_vline(xintercept = c(-0.9, 0.9), col = "red") +
  geom_vline(xintercept = 0) +
  geom_linerange(
    aes(y = predictor, xmin = min_r, xmax = max_r, col = gamma_slab),
    position = position_dodge(width = 0.6)) +
  facet_wrap(~basin) +
  scale_color_viridis_d(direction = -1) +
  labs(x = "correlation coefficient", y = "C* correlation with...") +
  theme(legend.position = "top")

Version Author Date
c569946 Donghe-Zhu 2021-01-24
a2f0d56 Donghe-Zhu 2021-01-23
28509fc Donghe-Zhu 2021-01-23
4c28e4a Donghe-Zhu 2021-01-22
24cc264 jens-daniel-mueller 2021-01-22
7891955 Donghe-Zhu 2021-01-21
d4cf1cb Donghe-Zhu 2021-01-21
1f3e5b6 jens-daniel-mueller 2021-01-20
0e7bdf1 jens-daniel-mueller 2021-01-15
4571843 jens-daniel-mueller 2021-01-14
b3564aa jens-daniel-mueller 2021-01-14
8d032c3 jens-daniel-mueller 2021-01-14
17dee1d jens-daniel-mueller 2021-01-13
7cdea0c jens-daniel-mueller 2021-01-06
fa85b93 jens-daniel-mueller 2021-01-06
e5cb81a Donghe-Zhu 2021-01-05
a499f10 Donghe-Zhu 2021-01-05
fb8a752 Donghe-Zhu 2020-12-23
8fae0b2 Donghe-Zhu 2020-12-21
c8b76b3 jens-daniel-mueller 2020-12-19
# print table
kable(cor_target_predictor_stats) %>%
  add_header_above() %>%
  kable_styling() %>%
  scroll_box(width = "100%", height = "400px")
predictor basin gamma_slab mean_r min_r max_r
nitrate Atlantic (-Inf,26] 0.0269936 -0.0131800 0.0546032
nitrate Atlantic (26,26.5] -0.2259605 -0.3718580 -0.0932580
nitrate Atlantic (26.5,26.75] -0.1653403 -0.3181858 0.0387210
nitrate Atlantic (26.75,27] -0.2213816 -0.4183202 0.0159495
nitrate Atlantic (27,27.25] -0.6106341 -0.7145395 -0.4928023
nitrate Atlantic (27.25,27.5] -0.7414915 -0.8045254 -0.6657001
nitrate Atlantic (27.5,27.75] -0.8747258 -0.8988562 -0.8462087
nitrate Atlantic (27.75,27.85] -0.9258115 -0.9365958 -0.9113354
nitrate Atlantic (27.85,27.95] -0.9715810 -0.9767093 -0.9645860
nitrate Atlantic (27.95,28.05] -0.9579371 -0.9601390 -0.9553217
nitrate Atlantic (28.05,28.1] -0.9883567 -0.9897697 -0.9869323
nitrate Atlantic (28.1,28.15] -0.9927733 -0.9940200 -0.9919608
nitrate Atlantic (28.15,28.2] -0.9944769 -0.9961191 -0.9918177
nitrate Atlantic (28.2, Inf] -0.9657490 -0.9718004 -0.9585585
nitrate Indo-Pacific (-Inf,26] -0.1152997 -0.2783666 0.0347572
nitrate Indo-Pacific (26,26.5] -0.4509442 -0.5737159 -0.3051158
nitrate Indo-Pacific (26.5,26.75] -0.6634411 -0.7303425 -0.5723095
nitrate Indo-Pacific (26.75,27] -0.6949987 -0.7358133 -0.6274493
nitrate Indo-Pacific (27,27.25] -0.7471559 -0.8131396 -0.6621821
nitrate Indo-Pacific (27.25,27.5] -0.6685436 -0.8223604 -0.4354675
nitrate Indo-Pacific (27.5,27.75] -0.3070664 -0.7610755 0.3561272
nitrate Indo-Pacific (27.75,27.85] -0.0078834 -0.5645044 0.7098004
nitrate Indo-Pacific (27.85,27.95] 0.1536357 -0.3199871 0.6799997
nitrate Indo-Pacific (27.95,28.05] 0.0415715 -0.3287273 0.4920884
nitrate Indo-Pacific (28.05,28.1] 0.1620539 -0.2011728 0.5790774
nitrate Indo-Pacific (28.1, Inf] 0.5130713 0.4033632 0.6170175
oxygen Atlantic (-Inf,26] -0.4569294 -0.4867139 -0.4001028
oxygen Atlantic (26,26.5] 0.0747288 -0.0606627 0.2280177
oxygen Atlantic (26.5,26.75] 0.0152935 -0.1935264 0.1735479
oxygen Atlantic (26.75,27] 0.1005444 -0.1558755 0.3065168
oxygen Atlantic (27,27.25] 0.3939334 0.2382066 0.5339397
oxygen Atlantic (27.25,27.5] 0.2340513 0.0762313 0.3802792
oxygen Atlantic (27.5,27.75] 0.1225539 0.0479820 0.1923049
oxygen Atlantic (27.75,27.85] -0.1406321 -0.1996262 -0.0776879
oxygen Atlantic (27.85,27.95] 0.1107286 0.0819181 0.1478899
oxygen Atlantic (27.95,28.05] -0.1930430 -0.2468287 -0.1161885
oxygen Atlantic (28.05,28.1] -0.0280508 -0.0486675 -0.0056561
oxygen Atlantic (28.1,28.15] 0.4636875 0.4527373 0.4721987
oxygen Atlantic (28.15,28.2] 0.6632126 0.6594691 0.6680961
oxygen Atlantic (28.2, Inf] 0.5272477 0.5141373 0.5438573
oxygen Indo-Pacific (-Inf,26] 0.1985501 0.0635880 0.3492456
oxygen Indo-Pacific (26,26.5] 0.4216115 0.2522408 0.5515234
oxygen Indo-Pacific (26.5,26.75] 0.7202953 0.6316002 0.7828569
oxygen Indo-Pacific (26.75,27] 0.8348820 0.7676762 0.8823360
oxygen Indo-Pacific (27,27.25] 0.7981246 0.7020174 0.8718148
oxygen Indo-Pacific (27.25,27.5] 0.6532064 0.3980563 0.8230089
oxygen Indo-Pacific (27.5,27.75] 0.2613667 -0.4311113 0.7401482
oxygen Indo-Pacific (27.75,27.85] 0.0703049 -0.6673982 0.6320735
oxygen Indo-Pacific (27.85,27.95] -0.0703286 -0.6256679 0.4169543
oxygen Indo-Pacific (27.95,28.05] 0.0862484 -0.3894986 0.4700020
oxygen Indo-Pacific (28.05,28.1] -0.0425524 -0.4906313 0.3422000
oxygen Indo-Pacific (28.1, Inf] -0.4766760 -0.6103629 -0.3378258
phosphate Atlantic (-Inf,26] 0.4402535 0.3629020 0.5016541
phosphate Atlantic (26,26.5] 0.0231824 -0.0838596 0.1036402
phosphate Atlantic (26.5,26.75] -0.1495355 -0.2835118 0.0364510
phosphate Atlantic (26.75,27] -0.2481112 -0.4310239 -0.0338118
phosphate Atlantic (27,27.25] -0.6458169 -0.7374433 -0.5386546
phosphate Atlantic (27.25,27.5] -0.7802243 -0.8292070 -0.7188560
phosphate Atlantic (27.5,27.75] -0.8950568 -0.9134885 -0.8730060
phosphate Atlantic (27.75,27.85] -0.9449144 -0.9522141 -0.9344548
phosphate Atlantic (27.85,27.95] -0.9722238 -0.9786287 -0.9633167
phosphate Atlantic (27.95,28.05] -0.9597184 -0.9620782 -0.9558823
phosphate Atlantic (28.05,28.1] -0.9885780 -0.9900367 -0.9867592
phosphate Atlantic (28.1,28.15] -0.9929095 -0.9940464 -0.9921523
phosphate Atlantic (28.15,28.2] -0.9937885 -0.9949452 -0.9924933
phosphate Atlantic (28.2, Inf] -0.9780168 -0.9807725 -0.9762173
phosphate Indo-Pacific (-Inf,26] -0.1432395 -0.3107995 0.0110294
phosphate Indo-Pacific (26,26.5] -0.5866252 -0.7102422 -0.4253541
phosphate Indo-Pacific (26.5,26.75] -0.8143623 -0.8717897 -0.7294770
phosphate Indo-Pacific (26.75,27] -0.8367100 -0.8811836 -0.7761624
phosphate Indo-Pacific (27,27.25] -0.8282547 -0.8861495 -0.7519136
phosphate Indo-Pacific (27.25,27.5] -0.7199561 -0.8639312 -0.5006583
phosphate Indo-Pacific (27.5,27.75] -0.3077663 -0.7568981 0.3480930
phosphate Indo-Pacific (27.75,27.85] 0.0012271 -0.5502468 0.7114011
phosphate Indo-Pacific (27.85,27.95] 0.1437893 -0.3287483 0.6726404
phosphate Indo-Pacific (27.95,28.05] 0.0387412 -0.3299029 0.4870988
phosphate Indo-Pacific (28.05,28.1] 0.1442290 -0.2179524 0.5594772
phosphate Indo-Pacific (28.1, Inf] 0.4638316 0.3455955 0.5767606
phosphate_star Atlantic (-Inf,26] 0.1011514 0.0498067 0.1452297
phosphate_star Atlantic (26,26.5] 0.1075981 0.0932518 0.1347536
phosphate_star Atlantic (26.5,26.75] -0.3313220 -0.3536565 -0.3039910
phosphate_star Atlantic (26.75,27] -0.4306697 -0.5390440 -0.3622338
phosphate_star Atlantic (27,27.25] -0.5758978 -0.6523484 -0.4921346
phosphate_star Atlantic (27.25,27.5] -0.7297849 -0.8069404 -0.6481326
phosphate_star Atlantic (27.5,27.75] -0.8019948 -0.8415493 -0.7617142
phosphate_star Atlantic (27.75,27.85] -0.8866319 -0.9281579 -0.8449938
phosphate_star Atlantic (27.85,27.95] -0.8956414 -0.9282086 -0.8570907
phosphate_star Atlantic (27.95,28.05] -0.8792209 -0.9100347 -0.8489023
phosphate_star Atlantic (28.05,28.1] -0.9357280 -0.9587066 -0.9091095
phosphate_star Atlantic (28.1,28.15] -0.9638590 -0.9773642 -0.9492232
phosphate_star Atlantic (28.15,28.2] -0.9770357 -0.9864388 -0.9669520
phosphate_star Atlantic (28.2, Inf] -0.9694754 -0.9788690 -0.9565256
phosphate_star Indo-Pacific (-Inf,26] -0.0067078 -0.1347902 0.1158792
phosphate_star Indo-Pacific (26,26.5] -0.5570677 -0.6022742 -0.5003744
phosphate_star Indo-Pacific (26.5,26.75] -0.5813075 -0.6059676 -0.5568690
phosphate_star Indo-Pacific (26.75,27] -0.5179954 -0.5369605 -0.4852368
phosphate_star Indo-Pacific (27,27.25] -0.6711656 -0.6945508 -0.6480354
phosphate_star Indo-Pacific (27.25,27.5] -0.5297383 -0.5561789 -0.5107753
phosphate_star Indo-Pacific (27.5,27.75] -0.1399733 -0.4999755 0.1090058
phosphate_star Indo-Pacific (27.75,27.85] 0.3815853 -0.2267951 0.7878502
phosphate_star Indo-Pacific (27.85,27.95] 0.3803007 -0.0181880 0.6902955
phosphate_star Indo-Pacific (27.95,28.05] 0.5629903 0.2472120 0.7891929
phosphate_star Indo-Pacific (28.05,28.1] 0.5188025 0.2076844 0.7609118
phosphate_star Indo-Pacific (28.1, Inf] -0.0214844 -0.1125968 0.0691077
sal Atlantic (-Inf,26] 0.6329389 0.6159084 0.6581242
sal Atlantic (26,26.5] -0.0950453 -0.1155099 -0.0586497
sal Atlantic (26.5,26.75] -0.0610730 -0.1616480 0.0515048
sal Atlantic (26.75,27] -0.1176359 -0.2419380 0.0752622
sal Atlantic (27,27.25] -0.0604729 -0.1930877 0.0621034
sal Atlantic (27.25,27.5] 0.2428429 0.0815750 0.4002206
sal Atlantic (27.5,27.75] -0.0662468 -0.1726693 0.0397511
sal Atlantic (27.75,27.85] 0.5391256 0.4596143 0.6329847
sal Atlantic (27.85,27.95] 0.5714413 0.5123516 0.6365731
sal Atlantic (27.95,28.05] 0.7692805 0.7226039 0.8143549
sal Atlantic (28.05,28.1] 0.8948865 0.8685197 0.9158452
sal Atlantic (28.1,28.15] 0.9402902 0.9260166 0.9592370
sal Atlantic (28.15,28.2] 0.9465060 0.9260655 0.9639575
sal Atlantic (28.2, Inf] 0.6762985 0.6390711 0.7033323
sal Indo-Pacific (-Inf,26] -0.0632689 -0.1296836 0.0033318
sal Indo-Pacific (26,26.5] 0.3003825 0.2763641 0.3304955
sal Indo-Pacific (26.5,26.75] 0.2654368 0.2306789 0.2835971
sal Indo-Pacific (26.75,27] 0.1828136 0.1196013 0.2442309
sal Indo-Pacific (27,27.25] 0.4436219 0.3919447 0.4911330
sal Indo-Pacific (27.25,27.5] 0.2142758 0.1368161 0.2771281
sal Indo-Pacific (27.5,27.75] -0.1593541 -0.4342577 0.2757749
sal Indo-Pacific (27.75,27.85] -0.3330548 -0.8060006 0.3286839
sal Indo-Pacific (27.85,27.95] -0.2070486 -0.6435653 0.3079577
sal Indo-Pacific (27.95,28.05] -0.3531654 -0.6858301 0.0827998
sal Indo-Pacific (28.05,28.1] -0.2501868 -0.5984770 0.1677732
sal Indo-Pacific (28.1, Inf] -0.0200636 -0.2202403 0.1856615
silicate Atlantic (-Inf,26] -0.6235293 -0.6822996 -0.5931277
silicate Atlantic (26,26.5] -0.5093404 -0.5740153 -0.4379810
silicate Atlantic (26.5,26.75] -0.3666501 -0.4750659 -0.2218988
silicate Atlantic (26.75,27] -0.4560659 -0.6294062 -0.2548992
silicate Atlantic (27,27.25] -0.7908733 -0.8530734 -0.7118891
silicate Atlantic (27.25,27.5] -0.8753026 -0.9017861 -0.8384385
silicate Atlantic (27.5,27.75] -0.9171498 -0.9185239 -0.9155889
silicate Atlantic (27.75,27.85] -0.9290193 -0.9410706 -0.9174835
silicate Atlantic (27.85,27.95] -0.9067008 -0.9285901 -0.8796809
silicate Atlantic (27.95,28.05] -0.9174158 -0.9251335 -0.9103238
silicate Atlantic (28.05,28.1] -0.9658083 -0.9681704 -0.9617209
silicate Atlantic (28.1,28.15] -0.9775239 -0.9819129 -0.9730022
silicate Atlantic (28.15,28.2] -0.9265620 -0.9353244 -0.9138045
silicate Atlantic (28.2, Inf] -0.7478464 -0.7758269 -0.7087256
silicate Indo-Pacific (-Inf,26] -0.1261189 -0.2814228 0.0087882
silicate Indo-Pacific (26,26.5] -0.6594363 -0.7532053 -0.5390698
silicate Indo-Pacific (26.5,26.75] -0.7437066 -0.7947383 -0.6664905
silicate Indo-Pacific (26.75,27] -0.6775849 -0.7293239 -0.6097373
silicate Indo-Pacific (27,27.25] -0.6931388 -0.7657052 -0.5987968
silicate Indo-Pacific (27.25,27.5] -0.6167679 -0.7744134 -0.3826825
silicate Indo-Pacific (27.5,27.75] -0.2503160 -0.7028054 0.4027220
silicate Indo-Pacific (27.75,27.85] 0.0275295 -0.5275915 0.7361816
silicate Indo-Pacific (27.85,27.95] 0.1520005 -0.3257949 0.6827522
silicate Indo-Pacific (27.95,28.05] 0.0320706 -0.3444162 0.4920461
silicate Indo-Pacific (28.05,28.1] 0.1409720 -0.2247137 0.5626965
silicate Indo-Pacific (28.1, Inf] 0.3763762 0.2205045 0.5301459
temp Atlantic (-Inf,26] -0.0491292 -0.0822790 -0.0015824
temp Atlantic (26,26.5] -0.2374342 -0.2596759 -0.1960558
temp Atlantic (26.5,26.75] -0.0741267 -0.1555728 0.0127791
temp Atlantic (26.75,27] -0.0490542 -0.1496181 0.1194733
temp Atlantic (27,27.25] -0.0347625 -0.1491391 0.0724962
temp Atlantic (27.25,27.5] 0.2081095 0.0472510 0.3629162
temp Atlantic (27.5,27.75] -0.0282821 -0.1194432 0.0652897
temp Atlantic (27.75,27.85] 0.5506288 0.4761536 0.6358221
temp Atlantic (27.85,27.95] 0.5969218 0.5410243 0.6536703
temp Atlantic (27.95,28.05] 0.7524867 0.7064418 0.7982045
temp Atlantic (28.05,28.1] 0.8605036 0.8267967 0.8856737
temp Atlantic (28.1,28.15] 0.9034743 0.8846602 0.9237863
temp Atlantic (28.15,28.2] 0.9228584 0.9004739 0.9425501
temp Atlantic (28.2, Inf] 0.8171427 0.7975944 0.8462547
temp Indo-Pacific (-Inf,26] -0.3731855 -0.4629043 -0.2790149
temp Indo-Pacific (26,26.5] 0.2568546 0.2169667 0.2973742
temp Indo-Pacific (26.5,26.75] 0.2219722 0.1804235 0.2452792
temp Indo-Pacific (26.75,27] 0.1166388 0.0503751 0.1789004
temp Indo-Pacific (27,27.25] 0.4130346 0.3667944 0.4548654
temp Indo-Pacific (27.25,27.5] 0.3238948 0.2998795 0.3419444
temp Indo-Pacific (27.5,27.75] 0.0779621 -0.1887942 0.4595552
temp Indo-Pacific (27.75,27.85] -0.3414179 -0.8015871 0.3126022
temp Indo-Pacific (27.85,27.95] -0.2656797 -0.6754168 0.2332146
temp Indo-Pacific (27.95,28.05] -0.4304128 -0.7519012 -0.0040522
temp Indo-Pacific (28.05,28.1] -0.2752135 -0.6240377 0.1526569
temp Indo-Pacific (28.1, Inf] 0.2410560 0.0787373 0.4021228
rm(cor_target_predictor, cor_target_predictor_stats)

sessionInfo()
R version 4.0.3 (2020-10-10)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: openSUSE Leap 15.2

Matrix products: default
BLAS:   /usr/local/R-4.0.3/lib64/R/lib/libRblas.so
LAPACK: /usr/local/R-4.0.3/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] corrr_0.4.3      broom_0.7.3      kableExtra_1.3.1 knitr_1.30      
 [5] olsrr_0.5.3      GGally_2.0.0     lubridate_1.7.9  metR_0.9.0      
 [9] scico_1.2.0      patchwork_1.1.1  collapse_1.5.0   forcats_0.5.0   
[13] stringr_1.4.0    dplyr_1.0.2      purrr_0.3.4      readr_1.4.0     
[17] tidyr_1.1.2      tibble_3.0.4     ggplot2_3.3.3    tidyverse_1.3.0 
[21] workflowr_1.6.2 

loaded via a namespace (and not attached):
 [1] fs_1.5.0                 webshot_0.5.2            RColorBrewer_1.1-2      
 [4] httr_1.4.2               rprojroot_2.0.2          tools_4.0.3             
 [7] backports_1.1.10         R6_2.5.0                 nortest_1.0-4           
[10] DBI_1.1.0                colorspace_2.0-0         withr_2.3.0             
[13] gridExtra_2.3            tidyselect_1.1.0         curl_4.3                
[16] compiler_4.0.3           git2r_0.27.1             cli_2.2.0               
[19] rvest_0.3.6              xml2_1.3.2               labeling_0.4.2          
[22] scales_1.1.1             checkmate_2.0.0          goftest_1.2-2           
[25] digest_0.6.27            foreign_0.8-80           rmarkdown_2.5           
[28] rio_0.5.16               pkgconfig_2.0.3          htmltools_0.5.0         
[31] highr_0.8                dbplyr_1.4.4             rlang_0.4.10            
[34] readxl_1.3.1             rstudioapi_0.13          farver_2.0.3            
[37] generics_0.1.0           jsonlite_1.7.2           zip_2.1.1               
[40] car_3.0-10               magrittr_2.0.1           Matrix_1.2-18           
[43] Rcpp_1.0.5               munsell_0.5.0            fansi_0.4.1             
[46] abind_1.4-5              lifecycle_0.2.0          stringi_1.5.3           
[49] whisker_0.4              yaml_2.2.1               carData_3.0-4           
[52] plyr_1.8.6               grid_4.0.3               blob_1.2.1              
[55] parallel_4.0.3           promises_1.1.1           crayon_1.3.4            
[58] lattice_0.20-41          haven_2.3.1              hms_0.5.3               
[61] pillar_1.4.7             reprex_0.3.0             glue_1.4.2              
[64] evaluate_0.14            RcppArmadillo_0.10.1.2.2 data.table_1.13.6       
[67] modelr_0.1.8             vctrs_0.3.6              httpuv_1.5.4            
[70] cellranger_1.1.0         gtable_0.3.0             reshape_0.8.8           
[73] assertthat_0.2.1         xfun_0.20                openxlsx_4.2.3          
[76] RcppEigen_0.3.3.9.1      later_1.1.0.1            viridisLite_0.3.0       
[79] ellipsis_0.3.1           here_1.0.1