Last updated: 2020-12-21

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 00a1322. 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/

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 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 GLODAPv2.2020 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 coeffcients.

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
c8b76b3 jens-daniel-mueller 2020-12-19

Version Author Date
c8b76b3 jens-daniel-mueller 2020-12-19

Version Author Date
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 assesment

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
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
aou + oxygen Atlantic (-Inf,26] -0.9408713 -0.9794008 -0.9164270
aou + oxygen Atlantic (26,26.5] -0.9160452 -0.9348602 -0.8986063
aou + oxygen Atlantic (26.5,26.75] -0.9690156 -0.9774962 -0.9585383
aou + oxygen Atlantic (26.75,27] -0.9798355 -0.9832641 -0.9753742
aou + oxygen Atlantic (27,27.25] -0.9774918 -0.9853045 -0.9648161
aou + oxygen Atlantic (27.25,27.5] -0.9682766 -0.9778246 -0.9495095
aou + oxygen Atlantic (27.5,27.75] -0.9355427 -0.9488501 -0.9107326
aou + oxygen Atlantic (27.75,27.85] -0.9046070 -0.9173496 -0.8920846
aou + oxygen Atlantic (27.85,27.95] -0.8903367 -0.9010213 -0.8782080
aou + oxygen Atlantic (27.95,28.05] -0.9090002 -0.9178452 -0.9044895
aou + oxygen Atlantic (28.05,28.1] -0.8999330 -0.9215006 -0.8822967
aou + oxygen Atlantic (28.1,28.15] -0.8907659 -0.9272223 -0.8507771
aou + oxygen Atlantic (28.15,28.2] -0.9745876 -0.9842499 -0.9599894
aou + oxygen Atlantic (28.2, Inf] -0.9457264 -0.9555861 -0.9378399
aou + oxygen Indian (-Inf,26] -0.9919736 -0.9932877 -0.9912799
aou + oxygen Indian (26,26.5] -0.9928278 -0.9948947 -0.9898786
aou + oxygen Indian (26.5,26.75] -0.9927983 -0.9946685 -0.9891446
aou + oxygen Indian (26.75,27] -0.9837564 -0.9910771 -0.9792068
aou + oxygen Indian (27,27.25] -0.9914765 -0.9922557 -0.9902073
aou + oxygen Indian (27.25,27.5] -0.9909222 -0.9922711 -0.9888683
aou + oxygen Indian (27.5,27.75] -0.9894490 -0.9905758 -0.9887390
aou + oxygen Indian (27.75,27.85] -0.9900072 -0.9920016 -0.9863055
aou + oxygen Indian (27.85,27.95] -0.9905806 -0.9912693 -0.9899995
aou + oxygen Indian (27.95,28.05] -0.9908375 -0.9948310 -0.9846411
aou + oxygen Indian (28.05,28.1] -0.9933094 -0.9951972 -0.9923008
aou + oxygen Indian (28.1, Inf] -0.9934691 -0.9950071 -0.9919490
aou + oxygen Pacific (-Inf,26] -0.9407871 -0.9639601 -0.9224357
aou + oxygen Pacific (26,26.5] -0.9770315 -0.9781509 -0.9750352
aou + oxygen Pacific (26.5,26.75] -0.9818936 -0.9837067 -0.9808281
aou + oxygen Pacific (26.75,27] -0.9813355 -0.9866156 -0.9764108
aou + oxygen Pacific (27,27.25] -0.9901444 -0.9907826 -0.9894387
aou + oxygen Pacific (27.25,27.5] -0.9954861 -0.9958003 -0.9951081
aou + oxygen Pacific (27.5,27.75] -0.9947242 -0.9963096 -0.9929693
aou + oxygen Pacific (27.75,27.85] -0.9972472 -0.9978729 -0.9968868
aou + oxygen Pacific (27.85,27.95] -0.9973976 -0.9984362 -0.9967977
aou + oxygen Pacific (27.95,28.05] -0.9977563 -0.9982972 -0.9973768
aou + oxygen Pacific (28.05,28.1] -0.9971309 -0.9978040 -0.9958361
aou + oxygen Pacific (28.1, Inf] -0.9978277 -0.9984509 -0.9973239
aou + phosphate Atlantic (-Inf,26] 0.9247756 0.8848955 0.9539348
aou + phosphate Atlantic (26,26.5] 0.8810575 0.8551251 0.9078723
aou + phosphate Atlantic (26.5,26.75] 0.8818794 0.8705043 0.8989468
aou + phosphate Atlantic (26.75,27] 0.8347036 0.8142398 0.8466745
aou + phosphate Atlantic (27,27.25] 0.7799616 0.7092755 0.8395429
aou + phosphate Atlantic (27.25,27.5] 0.6670035 0.5525134 0.7614051
aou + phosphate Atlantic (27.5,27.75] 0.6777936 0.5993478 0.7435858
aou + phosphate Atlantic (27.75,27.85] 0.7655365 0.7499654 0.7745749
aou + phosphate Atlantic (27.85,27.95] 0.7886039 0.7557819 0.8073930
aou + phosphate Atlantic (27.95,28.05] 0.8759036 0.8426087 0.8991105
aou + phosphate Atlantic (28.05,28.1] 0.8938673 0.8890308 0.8987077
aou + phosphate Atlantic (28.1,28.15] 0.9335406 0.9130736 0.9520796
aou + phosphate Atlantic (28.15,28.2] 0.9874271 0.9779859 0.9965659
aou + phosphate Atlantic (28.2, Inf] 0.9125752 0.8104710 0.9710392
aou + phosphate Indian (-Inf,26] 0.9828329 0.9803574 0.9870928
aou + phosphate Indian (26,26.5] 0.9700186 0.9561349 0.9802393
aou + phosphate Indian (26.5,26.75] 0.9547603 0.9407953 0.9675474
aou + phosphate Indian (26.75,27] 0.8746580 0.8219500 0.9271998
aou + phosphate Indian (27,27.25] 0.9102090 0.8957416 0.9270828
aou + phosphate Indian (27.25,27.5] 0.9250460 0.9149771 0.9440740
aou + phosphate Indian (27.5,27.75] 0.9535609 0.9468642 0.9598122
aou + phosphate Indian (27.75,27.85] 0.9761544 0.9600554 0.9900942
aou + phosphate Indian (27.85,27.95] 0.9665914 0.9632674 0.9731673
aou + phosphate Indian (27.95,28.05] 0.9373547 0.9059261 0.9695330
aou + phosphate Indian (28.05,28.1] 0.9413002 0.9281356 0.9571943
aou + phosphate Indian (28.1, Inf] 0.8812907 0.8421610 0.9114523
aou + phosphate Pacific (-Inf,26] 0.9666711 0.9616178 0.9733794
aou + phosphate Pacific (26,26.5] 0.9702424 0.9627446 0.9769566
aou + phosphate Pacific (26.5,26.75] 0.9777395 0.9738469 0.9807594
aou + phosphate Pacific (26.75,27] 0.9743380 0.9714213 0.9777235
aou + phosphate Pacific (27,27.25] 0.9693318 0.9666561 0.9743747
aou + phosphate Pacific (27.25,27.5] 0.9732586 0.9555340 0.9873395
aou + phosphate Pacific (27.5,27.75] 0.9305968 0.8751241 0.9883725
aou + phosphate Pacific (27.75,27.85] 0.9911074 0.9891962 0.9939485
aou + phosphate Pacific (27.85,27.95] 0.9912717 0.9887947 0.9949154
aou + phosphate Pacific (27.95,28.05] 0.9929982 0.9915045 0.9952520
aou + phosphate Pacific (28.05,28.1] 0.9884468 0.9790501 0.9935240
aou + phosphate Pacific (28.1, Inf] 0.9688961 0.9604576 0.9743618
aou + phosphate_star Atlantic (-Inf,26] 0.5689659 0.3872764 0.6763965
aou + phosphate_star Atlantic (26,26.5] 0.5021490 0.4365076 0.5974930
aou + phosphate_star Atlantic (26.5,26.75] 0.1625412 0.0514434 0.2211788
aou + phosphate_star Atlantic (26.75,27] -0.1258411 -0.1984918 -0.0826868
aou + phosphate_star Atlantic (27,27.25] -0.0787088 -0.1812134 0.0018696
aou + phosphate_star Atlantic (27.25,27.5] -0.0873373 -0.1260418 -0.0334340
aou + phosphate_star Atlantic (27.5,27.75] 0.1564800 0.1068387 0.2035622
aou + phosphate_star Atlantic (27.75,27.85] 0.3774351 0.3259625 0.4034348
aou + phosphate_star Atlantic (27.85,27.95] 0.4823405 0.4301372 0.5106172
aou + phosphate_star Atlantic (27.95,28.05] 0.6386042 0.5698013 0.7060915
aou + phosphate_star Atlantic (28.05,28.1] 0.6883621 0.6684510 0.7009681
aou + phosphate_star Atlantic (28.1,28.15] 0.7938016 0.7313605 0.8425103
aou + phosphate_star Atlantic (28.15,28.2] 0.9647826 0.9375258 0.9895391
aou + phosphate_star Atlantic (28.2, Inf] 0.8165850 0.5794124 0.9398927
aou + phosphate_star Indian (-Inf,26] 0.7729857 0.7265713 0.8280825
aou + phosphate_star Indian (26,26.5] 0.5337119 0.4041934 0.7193712
aou + phosphate_star Indian (26.5,26.75] 0.1530558 0.1231974 0.1799506
aou + phosphate_star Indian (26.75,27] -0.1773031 -0.2481302 -0.0445198
aou + phosphate_star Indian (27,27.25] -0.5739205 -0.6738006 -0.5127501
aou + phosphate_star Indian (27.25,27.5] -0.6135040 -0.7869836 -0.5079946
aou + phosphate_star Indian (27.5,27.75] -0.5100502 -0.6714013 -0.3796015
aou + phosphate_star Indian (27.75,27.85] -0.4216951 -0.6198360 -0.2482401
aou + phosphate_star Indian (27.85,27.95] -0.4528167 -0.5889094 -0.3349564
aou + phosphate_star Indian (27.95,28.05] -0.5390337 -0.8092745 -0.3998696
aou + phosphate_star Indian (28.05,28.1] -0.6502101 -0.8539027 -0.4399503
aou + phosphate_star Indian (28.1, Inf] -0.8035921 -0.8726245 -0.6703105
aou + phosphate_star Pacific (-Inf,26] 0.7094987 0.6239534 0.7904749
aou + phosphate_star Pacific (26,26.5] 0.5420395 0.3996171 0.6859161
aou + phosphate_star Pacific (26.5,26.75] 0.4987034 0.4009350 0.6574888
aou + phosphate_star Pacific (26.75,27] 0.4504765 0.3883698 0.5220605
aou + phosphate_star Pacific (27,27.25] 0.0092141 -0.0610400 0.0561302
aou + phosphate_star Pacific (27.25,27.5] -0.2140549 -0.3833440 -0.0623220
aou + phosphate_star Pacific (27.5,27.75] -0.0049902 -0.3628449 0.3423824
aou + phosphate_star Pacific (27.75,27.85] -0.2195769 -0.2393161 -0.1962397
aou + phosphate_star Pacific (27.85,27.95] -0.1657302 -0.2516987 -0.1027299
aou + phosphate_star Pacific (27.95,28.05] -0.1409921 -0.3285012 -0.0079853
aou + phosphate_star Pacific (28.05,28.1] -0.1157469 -0.3533808 0.0280191
aou + phosphate_star Pacific (28.1, Inf] -0.7379278 -0.7651559 -0.7041770
aou + silicate Atlantic (-Inf,26] 0.1939195 0.0079067 0.4391309
aou + silicate Atlantic (26,26.5] 0.4827814 0.4528640 0.5271177
aou + silicate Atlantic (26.5,26.75] 0.5074353 0.4186111 0.5686194
aou + silicate Atlantic (26.75,27] 0.3370360 0.2938309 0.3704474
aou + silicate Atlantic (27,27.25] 0.3420070 0.2698024 0.4394608
aou + silicate Atlantic (27.25,27.5] 0.2030547 0.1510915 0.2792977
aou + silicate Atlantic (27.5,27.75] 0.2787557 0.2625329 0.2883548
aou + silicate Atlantic (27.75,27.85] 0.4762163 0.4494379 0.5096782
aou + silicate Atlantic (27.85,27.95] 0.5830029 0.5743744 0.5920692
aou + silicate Atlantic (27.95,28.05] 0.7416931 0.6937131 0.8062992
aou + silicate Atlantic (28.05,28.1] 0.8357578 0.8124969 0.8679369
aou + silicate Atlantic (28.1,28.15] 0.8593135 0.8141031 0.8833276
aou + silicate Atlantic (28.15,28.2] 0.9153802 0.8722366 0.9473440
aou + silicate Atlantic (28.2, Inf] 0.8115266 0.7722985 0.8659876
aou + silicate Indian (-Inf,26] 0.8996356 0.8291346 0.9773811
aou + silicate Indian (26,26.5] 0.8922406 0.8377585 0.9810776
aou + silicate Indian (26.5,26.75] 0.9034978 0.8652026 0.9759442
aou + silicate Indian (26.75,27] 0.8245349 0.8105125 0.8385506
aou + silicate Indian (27,27.25] 0.8356685 0.8030964 0.8851057
aou + silicate Indian (27.25,27.5] 0.8586397 0.8510414 0.8727703
aou + silicate Indian (27.5,27.75] 0.8878926 0.8664366 0.9077270
aou + silicate Indian (27.75,27.85] 0.9498549 0.9180507 0.9690406
aou + silicate Indian (27.85,27.95] 0.9327614 0.9133139 0.9491246
aou + silicate Indian (27.95,28.05] 0.8911019 0.8443669 0.9191575
aou + silicate Indian (28.05,28.1] 0.8383711 0.7160015 0.9192846
aou + silicate Indian (28.1, Inf] 0.6766623 0.5822576 0.7806572
aou + silicate Pacific (-Inf,26] 0.8716491 0.8304382 0.9084378
aou + silicate Pacific (26,26.5] 0.7926026 0.7346670 0.8518487
aou + silicate Pacific (26.5,26.75] 0.7541832 0.7141176 0.8110595
aou + silicate Pacific (26.75,27] 0.8561166 0.8411085 0.8824168
aou + silicate Pacific (27,27.25] 0.9046021 0.8946511 0.9149369
aou + silicate Pacific (27.25,27.5] 0.9207379 0.9098727 0.9324570
aou + silicate Pacific (27.5,27.75] 0.8873778 0.8431361 0.9256062
aou + silicate Pacific (27.75,27.85] 0.9607508 0.9467847 0.9718527
aou + silicate Pacific (27.85,27.95] 0.9489922 0.9437747 0.9526554
aou + silicate Pacific (27.95,28.05] 0.8558688 0.8444213 0.8647837
aou + silicate Pacific (28.05,28.1] 0.8463696 0.8167415 0.8775671
aou + silicate Pacific (28.1, Inf] 0.9106161 0.8895948 0.9327808
oxygen + phosphate Atlantic (-Inf,26] -0.7732680 -0.8880880 -0.6803714
oxygen + phosphate Atlantic (26,26.5] -0.6443968 -0.7296415 -0.5700263
oxygen + phosphate Atlantic (26.5,26.75] -0.7499177 -0.7958028 -0.7109429
oxygen + phosphate Atlantic (26.75,27] -0.7226876 -0.7461740 -0.6859479
oxygen + phosphate Atlantic (27,27.25] -0.6636284 -0.7417477 -0.5520792
oxygen + phosphate Atlantic (27.25,27.5] -0.5037670 -0.6358086 -0.3291543
oxygen + phosphate Atlantic (27.5,27.75] -0.4412409 -0.5527639 -0.3020353
oxygen + phosphate Atlantic (27.75,27.85] -0.4809654 -0.4906489 -0.4675004
oxygen + phosphate Atlantic (27.85,27.95] -0.4764783 -0.5098704 -0.4291421
oxygen + phosphate Atlantic (27.95,28.05] -0.6233629 -0.6744226 -0.5715031
oxygen + phosphate Atlantic (28.05,28.1] -0.6313007 -0.6681633 -0.6061552
oxygen + phosphate Atlantic (28.1,28.15] -0.6910843 -0.7901939 -0.5841663
oxygen + phosphate Atlantic (28.15,28.2] -0.9410793 -0.9760780 -0.9001557
oxygen + phosphate Atlantic (28.2, Inf] -0.7980690 -0.8841546 -0.6396880
oxygen + phosphate Indian (-Inf,26] -0.9574345 -0.9613256 -0.9499052
oxygen + phosphate Indian (26,26.5] -0.9368773 -0.9561439 -0.9076541
oxygen + phosphate Indian (26.5,26.75] -0.9145428 -0.9397344 -0.8829167
oxygen + phosphate Indian (26.75,27] -0.7760053 -0.8713398 -0.6907647
oxygen + phosphate Indian (27,27.25] -0.8499989 -0.8741555 -0.8260835
oxygen + phosphate Indian (27.25,27.5] -0.8672745 -0.8948378 -0.8475256
oxygen + phosphate Indian (27.5,27.75] -0.9021778 -0.9142317 -0.8926704
oxygen + phosphate Indian (27.75,27.85] -0.9395955 -0.9667485 -0.9029396
oxygen + phosphate Indian (27.85,27.95] -0.9308041 -0.9355278 -0.9267091
oxygen + phosphate Indian (27.95,28.05] -0.9017918 -0.9399904 -0.8379411
oxygen + phosphate Indian (28.05,28.1] -0.9187416 -0.9344569 -0.9022542
oxygen + phosphate Indian (28.1, Inf] -0.8773645 -0.9070725 -0.8568617
oxygen + phosphate Pacific (-Inf,26] -0.8483065 -0.8949873 -0.8140716
oxygen + phosphate Pacific (26,26.5] -0.9069827 -0.9178423 -0.8954101
oxygen + phosphate Pacific (26.5,26.75] -0.9266877 -0.9312712 -0.9183526
oxygen + phosphate Pacific (26.75,27] -0.9232884 -0.9310808 -0.9189676
oxygen + phosphate Pacific (27,27.25] -0.9338667 -0.9412372 -0.9267472
oxygen + phosphate Pacific (27.25,27.5] -0.9569831 -0.9739019 -0.9397425
oxygen + phosphate Pacific (27.5,27.75] -0.9226992 -0.9749174 -0.8735666
oxygen + phosphate Pacific (27.75,27.85] -0.9802345 -0.9865377 -0.9762098
oxygen + phosphate Pacific (27.85,27.95] -0.9808032 -0.9891451 -0.9757230
oxygen + phosphate Pacific (27.95,28.05] -0.9854254 -0.9895702 -0.9828774
oxygen + phosphate Pacific (28.05,28.1] -0.9803881 -0.9899110 -0.9635063
oxygen + phosphate Pacific (28.1, Inf] -0.9714372 -0.9801553 -0.9604150
oxygen + phosphate_star Atlantic (-Inf,26] -0.2982152 -0.4942864 -0.0437704
oxygen + phosphate_star Atlantic (26,26.5] -0.1391463 -0.3025302 -0.0214394
oxygen + phosphate_star Atlantic (26.5,26.75] 0.0718470 0.0166176 0.1495770
oxygen + phosphate_star Atlantic (26.75,27] 0.3058029 0.2511654 0.3719626
oxygen + phosphate_star Atlantic (27,27.25] 0.2526322 0.1641151 0.3235443
oxygen + phosphate_star Atlantic (27.25,27.5] 0.2931258 0.2149590 0.3802886
oxygen + phosphate_star Atlantic (27.5,27.75] 0.1437150 0.0620172 0.2448253
oxygen + phosphate_star Atlantic (27.75,27.85] -0.0009467 -0.0258215 0.0250296
oxygen + phosphate_star Atlantic (27.85,27.95] -0.0776591 -0.1159525 -0.0192477
oxygen + phosphate_star Atlantic (27.95,28.05] -0.2860110 -0.3884376 -0.2000358
oxygen + phosphate_star Atlantic (28.05,28.1] -0.3238223 -0.3874111 -0.2843018
oxygen + phosphate_star Atlantic (28.1,28.15] -0.4524306 -0.5996785 -0.2814352
oxygen + phosphate_star Atlantic (28.15,28.2] -0.8949314 -0.9564684 -0.8212553
oxygen + phosphate_star Atlantic (28.2, Inf] -0.6624418 -0.8231081 -0.3465778
oxygen + phosphate_star Indian (-Inf,26] -0.6968643 -0.7528032 -0.6365346
oxygen + phosphate_star Indian (26,26.5] -0.4360241 -0.6472632 -0.2748721
oxygen + phosphate_star Indian (26.5,26.75] -0.0393317 -0.0845137 -0.0124838
oxygen + phosphate_star Indian (26.75,27] 0.3457148 0.2356403 0.4381782
oxygen + phosphate_star Indian (27,27.25] 0.6738250 0.6264228 0.7594361
oxygen + phosphate_star Indian (27.25,27.5] 0.7109360 0.6134885 0.8563862
oxygen + phosphate_star Indian (27.5,27.75] 0.6250312 0.5122450 0.7703664
oxygen + phosphate_star Indian (27.75,27.85] 0.5385736 0.4017900 0.7118490
oxygen + phosphate_star Indian (27.85,27.95] 0.5584910 0.4565516 0.6847687
oxygen + phosphate_star Indian (27.95,28.05] 0.6234125 0.4951960 0.8341672
oxygen + phosphate_star Indian (28.05,28.1] 0.7083866 0.5399567 0.8699920
oxygen + phosphate_star Indian (28.1, Inf] 0.8228770 0.7141751 0.8822104
oxygen + phosphate_star Pacific (-Inf,26] -0.4545021 -0.6176697 -0.3014277
oxygen + phosphate_star Pacific (26,26.5] -0.3666614 -0.5276809 -0.2104732
oxygen + phosphate_star Pacific (26.5,26.75] -0.3367617 -0.5074849 -0.2381638
oxygen + phosphate_star Pacific (26.75,27] -0.2865554 -0.3586579 -0.2493502
oxygen + phosphate_star Pacific (27,27.25] 0.1158477 0.0765726 0.1860629
oxygen + phosphate_star Pacific (27.25,27.5] 0.2844799 0.1208535 0.4540564
oxygen + phosphate_star Pacific (27.5,27.75] 0.0441388 -0.3297665 0.4334910
oxygen + phosphate_star Pacific (27.75,27.85] 0.2857647 0.2682746 0.2954967
oxygen + phosphate_star Pacific (27.85,27.95] 0.2301796 0.1765946 0.3220116
oxygen + phosphate_star Pacific (27.95,28.05] 0.1970554 0.0688345 0.3849526
oxygen + phosphate_star Pacific (28.05,28.1] 0.1682473 0.0132079 0.3965351
oxygen + phosphate_star Pacific (28.1, Inf] 0.7373883 0.7114665 0.7521078
oxygen + silicate Atlantic (-Inf,26] -0.2409015 -0.5101470 0.0298766
oxygen + silicate Atlantic (26,26.5] -0.4531633 -0.5479436 -0.3806530
oxygen + silicate Atlantic (26.5,26.75] -0.3435850 -0.4040867 -0.2672895
oxygen + silicate Atlantic (26.75,27] -0.1783653 -0.2175823 -0.1376067
oxygen + silicate Atlantic (27,27.25] -0.2034779 -0.3072904 -0.1472177
oxygen + silicate Atlantic (27.25,27.5] -0.0231910 -0.1237034 0.0661569
oxygen + silicate Atlantic (27.5,27.75] -0.0162900 -0.0647094 0.0219829
oxygen + silicate Atlantic (27.75,27.85] -0.1501867 -0.1979259 -0.1104248
oxygen + silicate Atlantic (27.85,27.95] -0.2099209 -0.2293672 -0.1836110
oxygen + silicate Atlantic (27.95,28.05] -0.4275095 -0.5251970 -0.3668525
oxygen + silicate Atlantic (28.05,28.1] -0.5546101 -0.6353598 -0.5097649
oxygen + silicate Atlantic (28.1,28.15] -0.6087220 -0.7296363 -0.4437038
oxygen + silicate Atlantic (28.15,28.2] -0.8851616 -0.9423328 -0.8060068
oxygen + silicate Atlantic (28.2, Inf] -0.7411782 -0.8252523 -0.6846860
oxygen + silicate Indian (-Inf,26] -0.8771152 -0.9703739 -0.7971322
oxygen + silicate Indian (26,26.5] -0.8596349 -0.9746889 -0.7981899
oxygen + silicate Indian (26.5,26.75] -0.8637601 -0.9567421 -0.8087258
oxygen + silicate Indian (26.75,27] -0.7195291 -0.7712419 -0.6929444
oxygen + silicate Indian (27,27.25] -0.7647039 -0.8212176 -0.7187414
oxygen + silicate Indian (27.25,27.5] -0.7896169 -0.8139954 -0.7720807
oxygen + silicate Indian (27.5,27.75] -0.8213058 -0.8483641 -0.7989067
oxygen + silicate Indian (27.75,27.85] -0.9061382 -0.9317672 -0.8615992
oxygen + silicate Indian (27.85,27.95] -0.8880077 -0.9085713 -0.8687713
oxygen + silicate Indian (27.95,28.05] -0.8479553 -0.9038639 -0.7921047
oxygen + silicate Indian (28.05,28.1] -0.7986927 -0.8911480 -0.6475305
oxygen + silicate Indian (28.1, Inf] -0.6782210 -0.7800541 -0.5932690
oxygen + silicate Pacific (-Inf,26] -0.7090230 -0.8032076 -0.6168128
oxygen + silicate Pacific (26,26.5] -0.6817989 -0.7553383 -0.6161861
oxygen + silicate Pacific (26.5,26.75] -0.6464062 -0.7142543 -0.5975110
oxygen + silicate Pacific (26.75,27] -0.7683578 -0.8028450 -0.7368816
oxygen + silicate Pacific (27,27.25] -0.8518155 -0.8629135 -0.8439423
oxygen + silicate Pacific (27.25,27.5] -0.8875325 -0.9000799 -0.8749460
oxygen + silicate Pacific (27.5,27.75] -0.8736734 -0.8978002 -0.8457143
oxygen + silicate Pacific (27.75,27.85] -0.9434359 -0.9566991 -0.9277197
oxygen + silicate Pacific (27.85,27.95] -0.9307787 -0.9327159 -0.9284531
oxygen + silicate Pacific (27.95,28.05] -0.8359196 -0.8447534 -0.8252520
oxygen + silicate Pacific (28.05,28.1] -0.8386718 -0.8673603 -0.8084160
oxygen + silicate Pacific (28.1, Inf] -0.9150005 -0.9414361 -0.8883449
phosphate + phosphate_star Atlantic (-Inf,26] 0.8283195 0.7619452 0.8844496
phosphate + phosphate_star Atlantic (26,26.5] 0.8452448 0.8295519 0.8725241
phosphate + phosphate_star Atlantic (26.5,26.75] 0.6012879 0.4797097 0.6673104
phosphate + phosphate_star Atlantic (26.75,27] 0.4350963 0.3547240 0.4935682
phosphate + phosphate_star Atlantic (27,27.25] 0.5487832 0.4529190 0.6535770
phosphate + phosphate_star Atlantic (27.25,27.5] 0.6710340 0.6171306 0.7481571
phosphate + phosphate_star Atlantic (27.5,27.75] 0.8219642 0.7974529 0.8503394
phosphate + phosphate_star Atlantic (27.75,27.85] 0.8769773 0.8622475 0.8849485
phosphate + phosphate_star Atlantic (27.85,27.95] 0.9133867 0.9113297 0.9152612
phosphate + phosphate_star Atlantic (27.95,28.05] 0.9270987 0.9183355 0.9423381
phosphate + phosphate_star Atlantic (28.05,28.1] 0.9379755 0.9286891 0.9447663
phosphate + phosphate_star Atlantic (28.1,28.15] 0.9564198 0.9432329 0.9642955
phosphate + phosphate_star Atlantic (28.15,28.2] 0.9930139 0.9877758 0.9970389
phosphate + phosphate_star Atlantic (28.2, Inf] 0.9769678 0.9426973 0.9951387
phosphate + phosphate_star Indian (-Inf,26] 0.8738472 0.8456920 0.9053693
phosphate + phosphate_star Indian (26,26.5] 0.7191330 0.6530406 0.8421426
phosphate + phosphate_star Indian (26.5,26.75] 0.4364954 0.4088686 0.4805152
phosphate + phosphate_star Indian (26.75,27] 0.3107395 0.1405677 0.4443613
phosphate + phosphate_star Indian (27,27.25] -0.1870915 -0.3023670 -0.0782015
phosphate + phosphate_star Indian (27.25,27.5] -0.2776740 -0.4720777 -0.1644887
phosphate + phosphate_star Indian (27.5,27.75] -0.2337932 -0.4003100 -0.0858193
phosphate + phosphate_star Indian (27.75,27.85] -0.2273122 -0.5085721 0.0307596
phosphate + phosphate_star Indian (27.85,27.95] -0.2200191 -0.3607283 -0.1128285
phosphate + phosphate_star Indian (27.95,28.05] -0.2435429 -0.5673986 0.0058204
phosphate + phosphate_star Indian (28.05,28.1] -0.3823314 -0.6374010 -0.1656634
phosphate + phosphate_star Indian (28.1, Inf] -0.4566338 -0.6020108 -0.2726344
phosphate + phosphate_star Pacific (-Inf,26] 0.8553284 0.7991364 0.9036298
phosphate + phosphate_star Pacific (26,26.5] 0.7206153 0.6012751 0.8215100
phosphate + phosphate_star Pacific (26.5,26.75] 0.6627525 0.5756384 0.7879361
phosphate + phosphate_star Pacific (26.75,27] 0.6315175 0.5873858 0.6961443
phosphate + phosphate_star Pacific (27,27.25] 0.2460165 0.1567192 0.3036192
phosphate + phosphate_star Pacific (27.25,27.5] -0.0010581 -0.2399830 0.2258060
phosphate + phosphate_star Pacific (27.5,27.75] 0.2972599 -0.2220499 0.7475526
phosphate + phosphate_star Pacific (27.75,27.85] -0.0919132 -0.1352871 -0.0530124
phosphate + phosphate_star Pacific (27.85,27.95] -0.0392295 -0.1068512 0.0348016
phosphate + phosphate_star Pacific (27.95,28.05] -0.0301703 -0.2134181 0.1161677
phosphate + phosphate_star Pacific (28.05,28.1] 0.0183798 -0.2484073 0.1749430
phosphate + phosphate_star Pacific (28.1, Inf] -0.5573578 -0.6065404 -0.4875441
sal + aou Atlantic (-Inf,26] -0.4820878 -0.6156337 -0.2923931
sal + aou Atlantic (26,26.5] -0.4350098 -0.5852949 -0.3403281
sal + aou Atlantic (26.5,26.75] -0.0534460 -0.1620897 0.1174234
sal + aou Atlantic (26.75,27] 0.3395923 0.2764284 0.3780677
sal + aou Atlantic (27,27.25] 0.5012354 0.3739513 0.6231775
sal + aou Atlantic (27.25,27.5] 0.4381510 0.3510694 0.4964511
sal + aou Atlantic (27.5,27.75] 0.3924296 0.3198757 0.4516803
sal + aou Atlantic (27.75,27.85] 0.5434949 0.4293538 0.6873045
sal + aou Atlantic (27.85,27.95] 0.3832972 0.2898406 0.4457815
sal + aou Atlantic (27.95,28.05] 0.0030247 -0.0365285 0.0603083
sal + aou Atlantic (28.05,28.1] -0.2806406 -0.3826011 -0.1031897
sal + aou Atlantic (28.1,28.15] -0.2959423 -0.4168735 -0.1671996
sal + aou Atlantic (28.15,28.2] -0.8300661 -0.9712319 -0.6219798
sal + aou Atlantic (28.2, Inf] 0.2050402 -0.0662388 0.3979818
sal + aou Indian (-Inf,26] -0.7082485 -0.8875488 -0.4770307
sal + aou Indian (26,26.5] -0.5747737 -0.8716459 -0.2387598
sal + aou Indian (26.5,26.75] -0.2907645 -0.5102733 -0.0787747
sal + aou Indian (26.75,27] 0.1504795 0.0515137 0.2887129
sal + aou Indian (27,27.25] 0.6277465 0.5920879 0.6650410
sal + aou Indian (27.25,27.5] 0.7741059 0.6817207 0.8814486
sal + aou Indian (27.5,27.75] 0.8086625 0.6782622 0.9003139
sal + aou Indian (27.75,27.85] 0.8219717 0.6291783 0.9624380
sal + aou Indian (27.85,27.95] 0.8341421 0.6987272 0.9314512
sal + aou Indian (27.95,28.05] 0.8633571 0.7781838 0.9227778
sal + aou Indian (28.05,28.1] 0.8884763 0.8524526 0.9121266
sal + aou Indian (28.1, Inf] 0.8502825 0.7998298 0.9077018
sal + aou Pacific (-Inf,26] -0.3485369 -0.3920621 -0.2865082
sal + aou Pacific (26,26.5] -0.2432318 -0.4711622 -0.0402260
sal + aou Pacific (26.5,26.75] -0.1607782 -0.4059739 -0.0065821
sal + aou Pacific (26.75,27] -0.3000086 -0.3950633 -0.2449432
sal + aou Pacific (27,27.25] -0.3683908 -0.4300712 -0.3154125
sal + aou Pacific (27.25,27.5] -0.2008223 -0.3138563 -0.0907440
sal + aou Pacific (27.5,27.75] 0.2498954 0.1472159 0.4437472
sal + aou Pacific (27.75,27.85] 0.4982760 0.4341231 0.5577141
sal + aou Pacific (27.85,27.95] 0.6496539 0.5956189 0.7155165
sal + aou Pacific (27.95,28.05] 0.6167244 0.5990383 0.6336324
sal + aou Pacific (28.05,28.1] 0.6449429 0.6114905 0.6834142
sal + aou Pacific (28.1, Inf] 0.8419171 0.8024080 0.9126484
sal + oxygen Atlantic (-Inf,26] 0.2516446 -0.0440039 0.4469027
sal + oxygen Atlantic (26,26.5] 0.0664678 -0.0821392 0.2885921
sal + oxygen Atlantic (26.5,26.75] -0.1733856 -0.3081485 -0.0623111
sal + oxygen Atlantic (26.75,27] -0.5069026 -0.5391588 -0.4644187
sal + oxygen Atlantic (27,27.25] -0.6502800 -0.7334395 -0.5815662
sal + oxygen Atlantic (27.25,27.5] -0.6236400 -0.6492872 -0.6045138
sal + oxygen Atlantic (27.5,27.75] -0.6527337 -0.7428408 -0.5731844
sal + oxygen Atlantic (27.75,27.85] -0.8077280 -0.8876995 -0.7466704
sal + oxygen Atlantic (27.85,27.95] -0.6499541 -0.6868071 -0.5990474
sal + oxygen Atlantic (27.95,28.05] -0.2817461 -0.3087107 -0.2390715
sal + oxygen Atlantic (28.05,28.1] -0.0743614 -0.1840798 -0.0007798
sal + oxygen Atlantic (28.1,28.15] -0.0678001 -0.2752941 0.1187525
sal + oxygen Atlantic (28.15,28.2] 0.7449123 0.5420734 0.9230792
sal + oxygen Atlantic (28.2, Inf] -0.3150342 -0.4021779 -0.1555412
sal + oxygen Indian (-Inf,26] 0.6810983 0.4231053 0.8909376
sal + oxygen Indian (26,26.5] 0.5070599 0.1781691 0.8293058
sal + oxygen Indian (26.5,26.75] 0.1925415 0.0044920 0.4232782
sal + oxygen Indian (26.75,27] -0.3059113 -0.3744581 -0.2373193
sal + oxygen Indian (27,27.25] -0.6960316 -0.7488573 -0.6143324
sal + oxygen Indian (27.25,27.5] -0.8231981 -0.9292445 -0.6980264
sal + oxygen Indian (27.5,27.75] -0.8373490 -0.9443544 -0.6653766
sal + oxygen Indian (27.75,27.85] -0.8124808 -0.9593921 -0.5779597
sal + oxygen Indian (27.85,27.95] -0.8229461 -0.9210883 -0.6586378
sal + oxygen Indian (27.95,28.05] -0.8781356 -0.9107406 -0.8262940
sal + oxygen Indian (28.05,28.1] -0.8835797 -0.9076266 -0.8618869
sal + oxygen Indian (28.1, Inf] -0.8625719 -0.9041405 -0.8296930
sal + oxygen Pacific (-Inf,26] 0.0919144 -0.0481281 0.2113793
sal + oxygen Pacific (26,26.5] 0.0698975 -0.1431828 0.3081558
sal + oxygen Pacific (26.5,26.75] -0.0022153 -0.1577744 0.2449283
sal + oxygen Pacific (26.75,27] 0.1369181 0.0604738 0.2356460
sal + oxygen Pacific (27,27.25] 0.2608540 0.1981864 0.3198236
sal + oxygen Pacific (27.25,27.5] 0.1473042 0.0493423 0.2569602
sal + oxygen Pacific (27.5,27.75] -0.2794993 -0.4770495 -0.1773851
sal + oxygen Pacific (27.75,27.85] -0.5060995 -0.5442039 -0.4462309
sal + oxygen Pacific (27.85,27.95] -0.6428401 -0.7002116 -0.5917541
sal + oxygen Pacific (27.95,28.05] -0.5957778 -0.6153998 -0.5712994
sal + oxygen Pacific (28.05,28.1] -0.6276067 -0.6780339 -0.5736721
sal + oxygen Pacific (28.1, Inf] -0.8403755 -0.9167046 -0.7967597
sal + phosphate Atlantic (-Inf,26] -0.5858006 -0.6469555 -0.5206913
sal + phosphate Atlantic (26,26.5] -0.7355004 -0.7897925 -0.6931442
sal + phosphate Atlantic (26.5,26.75] -0.4742324 -0.5740229 -0.2929939
sal + phosphate Atlantic (26.75,27] -0.1870826 -0.2797760 -0.1362634
sal + phosphate Atlantic (27,27.25] -0.0004164 -0.2029470 0.1236731
sal + phosphate Atlantic (27.25,27.5] -0.1821734 -0.3423714 -0.0642452
sal + phosphate Atlantic (27.5,27.75] -0.1159387 -0.1266981 -0.1064103
sal + phosphate Atlantic (27.75,27.85] 0.1299839 0.0177043 0.2526980
sal + phosphate Atlantic (27.85,27.95] 0.1071896 0.0807261 0.1331830
sal + phosphate Atlantic (27.95,28.05] -0.1760581 -0.2284363 -0.1306732
sal + phosphate Atlantic (28.05,28.1] -0.5054400 -0.6328798 -0.3196134
sal + phosphate Atlantic (28.1,28.15] -0.4489800 -0.5288770 -0.3661660
sal + phosphate Atlantic (28.15,28.2] -0.8367213 -0.9651708 -0.6351441
sal + phosphate Atlantic (28.2, Inf] 0.1022015 -0.3380895 0.3586864
sal + phosphate Indian (-Inf,26] -0.7713904 -0.9021986 -0.5848584
sal + phosphate Indian (26,26.5] -0.6935845 -0.9416480 -0.3442087
sal + phosphate Indian (26.5,26.75] -0.5164407 -0.7356129 -0.2377102
sal + phosphate Indian (26.75,27] -0.2994013 -0.4720500 0.0041711
sal + phosphate Indian (27,27.25] 0.3149865 0.2191397 0.4321744
sal + phosphate Indian (27.25,27.5] 0.5412295 0.4378371 0.6202292
sal + phosphate Indian (27.5,27.75] 0.6764012 0.6415650 0.7186190
sal + phosphate Indian (27.75,27.85] 0.7859394 0.6580309 0.9331672
sal + phosphate Indian (27.85,27.95] 0.7727492 0.7155569 0.8702961
sal + phosphate Indian (27.95,28.05] 0.7141037 0.5136190 0.8247906
sal + phosphate Indian (28.05,28.1] 0.7916758 0.7613378 0.8184213
sal + phosphate Indian (28.1, Inf] 0.7968392 0.6776926 0.8600972
sal + phosphate Pacific (-Inf,26] -0.4248428 -0.4449637 -0.3907496
sal + phosphate Pacific (26,26.5] -0.3594484 -0.5671715 -0.1918716
sal + phosphate Pacific (26.5,26.75] -0.2782076 -0.5039903 -0.1320800
sal + phosphate Pacific (26.75,27] -0.3816184 -0.4819561 -0.2931607
sal + phosphate Pacific (27,27.25] -0.4203255 -0.5005024 -0.3736880
sal + phosphate Pacific (27.25,27.5] -0.1395826 -0.2983633 0.0720917
sal + phosphate Pacific (27.5,27.75] 0.4725454 0.1864705 0.7967864
sal + phosphate Pacific (27.75,27.85] 0.5021676 0.4402301 0.5927666
sal + phosphate Pacific (27.85,27.95] 0.6573949 0.6122862 0.7246163
sal + phosphate Pacific (27.95,28.05] 0.6310763 0.6165960 0.6475182
sal + phosphate Pacific (28.05,28.1] 0.6868525 0.6505288 0.7140594
sal + phosphate Pacific (28.1, Inf] 0.8488618 0.8048441 0.9341398
sal + phosphate_star Atlantic (-Inf,26] -0.6671041 -0.7486907 -0.5856316
sal + phosphate_star Atlantic (26,26.5] -0.9098177 -0.9361653 -0.8946448
sal + phosphate_star Atlantic (26.5,26.75] -0.9334604 -0.9477356 -0.9248950
sal + phosphate_star Atlantic (26.75,27] -0.9186512 -0.9313755 -0.9020262
sal + phosphate_star Atlantic (27,27.25] -0.7314296 -0.7622531 -0.6832665
sal + phosphate_star Atlantic (27.25,27.5] -0.7404101 -0.7601128 -0.7104130
sal + phosphate_star Atlantic (27.5,27.75] -0.5437134 -0.5604544 -0.5182861
sal + phosphate_star Atlantic (27.75,27.85] -0.2950133 -0.3733197 -0.2252199
sal + phosphate_star Atlantic (27.85,27.95] -0.1795771 -0.1938619 -0.1601346
sal + phosphate_star Atlantic (27.95,28.05] -0.3501324 -0.4302134 -0.3030098
sal + phosphate_star Atlantic (28.05,28.1] -0.6477164 -0.7733844 -0.4771211
sal + phosphate_star Atlantic (28.1,28.15] -0.5861262 -0.6392684 -0.5455657
sal + phosphate_star Atlantic (28.15,28.2] -0.8455900 -0.9690339 -0.6513225
sal + phosphate_star Atlantic (28.2, Inf] 0.0360835 -0.4801128 0.3419033
sal + phosphate_star Indian (-Inf,26] -0.7779173 -0.7958375 -0.7577595
sal + phosphate_star Indian (26,26.5] -0.7966198 -0.9238038 -0.5720347
sal + phosphate_star Indian (26.5,26.75] -0.8412651 -0.9467642 -0.6808417
sal + phosphate_star Indian (26.75,27] -0.9041279 -0.9836167 -0.7476441
sal + phosphate_star Indian (27,27.25] -0.8426876 -0.9916357 -0.5571502
sal + phosphate_star Indian (27.25,27.5] -0.8188035 -0.9760032 -0.5326041
sal + phosphate_star Indian (27.5,27.75] -0.6681135 -0.9034518 -0.2563163
sal + phosphate_star Indian (27.75,27.85] -0.4340054 -0.6925866 0.0579233
sal + phosphate_star Indian (27.85,27.95] -0.4471872 -0.6928468 -0.0503983
sal + phosphate_star Indian (27.95,28.05] -0.6855666 -0.7890141 -0.5452567
sal + phosphate_star Indian (28.05,28.1] -0.6644195 -0.7736468 -0.5321482
sal + phosphate_star Indian (28.1, Inf] -0.6785071 -0.7529293 -0.6299437
sal + phosphate_star Pacific (-Inf,26] -0.6282287 -0.6913432 -0.5706539
sal + phosphate_star Pacific (26,26.5] -0.6972000 -0.7710664 -0.6008923
sal + phosphate_star Pacific (26.5,26.75] -0.7154955 -0.7735171 -0.6331405
sal + phosphate_star Pacific (26.75,27] -0.6751746 -0.7866133 -0.5234223
sal + phosphate_star Pacific (27,27.25] -0.4642532 -0.5456594 -0.3298934
sal + phosphate_star Pacific (27.25,27.5] 0.0239789 -0.1755477 0.3499185
sal + phosphate_star Pacific (27.5,27.75] 0.5094337 -0.0513493 0.8945028
sal + phosphate_star Pacific (27.75,27.85] -0.0916853 -0.3273228 0.1656849
sal + phosphate_star Pacific (27.85,27.95] -0.0039707 -0.0515856 0.0793667
sal + phosphate_star Pacific (27.95,28.05] 0.1256201 -0.0201185 0.3266621
sal + phosphate_star Pacific (28.05,28.1] 0.2270478 -0.0905676 0.4781591
sal + phosphate_star Pacific (28.1, Inf] -0.5269821 -0.5710154 -0.4669133
sal + silicate Atlantic (-Inf,26] -0.3725278 -0.5817554 -0.1567577
sal + silicate Atlantic (26,26.5] -0.1010711 -0.1835710 -0.0044244
sal + silicate Atlantic (26.5,26.75] -0.5062332 -0.5988897 -0.4466437
sal + silicate Atlantic (26.75,27] -0.6159316 -0.6185540 -0.6143369
sal + silicate Atlantic (27,27.25] -0.3691862 -0.4236580 -0.3094468
sal + silicate Atlantic (27.25,27.5] -0.4944082 -0.5306797 -0.4393488
sal + silicate Atlantic (27.5,27.75] -0.3601831 -0.4142192 -0.2971750
sal + silicate Atlantic (27.75,27.85] -0.1128930 -0.2096745 -0.0055753
sal + silicate Atlantic (27.85,27.95] -0.1119093 -0.1275504 -0.0900718
sal + silicate Atlantic (27.95,28.05] -0.2931125 -0.3689582 -0.2432413
sal + silicate Atlantic (28.05,28.1] -0.4946789 -0.5949101 -0.3327888
sal + silicate Atlantic (28.1,28.15] -0.4416739 -0.4638361 -0.4170916
sal + silicate Atlantic (28.15,28.2] -0.7207908 -0.8747820 -0.5628781
sal + silicate Atlantic (28.2, Inf] 0.1533223 -0.1678885 0.3973070
sal + silicate Indian (-Inf,26] -0.8695689 -0.9120503 -0.8005866
sal + silicate Indian (26,26.5] -0.7321537 -0.9058329 -0.5083471
sal + silicate Indian (26.5,26.75] -0.4987323 -0.6177438 -0.3682160
sal + silicate Indian (26.75,27] -0.3288513 -0.4457738 -0.1220955
sal + silicate Indian (27,27.25] 0.2012199 0.1236847 0.2657452
sal + silicate Indian (27.25,27.5] 0.4482973 0.3811072 0.5437104
sal + silicate Indian (27.5,27.75] 0.5767636 0.4701944 0.6434752
sal + silicate Indian (27.75,27.85] 0.7428088 0.5131913 0.9319336
sal + silicate Indian (27.85,27.95] 0.7608660 0.6063145 0.9071481
sal + silicate Indian (27.95,28.05] 0.7801133 0.6442339 0.9142756
sal + silicate Indian (28.05,28.1] 0.8420287 0.7201389 0.9388283
sal + silicate Indian (28.1, Inf] 0.8345346 0.7840715 0.8631524
sal + silicate Pacific (-Inf,26] -0.5839631 -0.6133363 -0.5409520
sal + silicate Pacific (26,26.5] -0.5385079 -0.6733639 -0.4705129
sal + silicate Pacific (26.5,26.75] -0.5420688 -0.6570234 -0.4350759
sal + silicate Pacific (26.75,27] -0.5521730 -0.5935692 -0.5027071
sal + silicate Pacific (27,27.25] -0.5011008 -0.5443309 -0.4585767
sal + silicate Pacific (27.25,27.5] -0.2755587 -0.3747793 -0.1167984
sal + silicate Pacific (27.5,27.75] 0.4325393 0.1200736 0.7691544
sal + silicate Pacific (27.75,27.85] 0.5275622 0.4560052 0.6444912
sal + silicate Pacific (27.85,27.95] 0.7155560 0.6505905 0.8172177
sal + silicate Pacific (27.95,28.05] 0.8003165 0.7490157 0.8557861
sal + silicate Pacific (28.05,28.1] 0.8347486 0.7149223 0.8987139
sal + silicate Pacific (28.1, Inf] 0.9258150 0.8931997 0.9677802
sal + temp Atlantic (-Inf,26] 0.7505956 0.6032336 0.8532303
sal + temp Atlantic (26,26.5] 0.9376507 0.9360516 0.9399814
sal + temp Atlantic (26.5,26.75] 0.9242099 0.9087760 0.9475261
sal + temp Atlantic (26.75,27] 0.9354704 0.9172780 0.9450690
sal + temp Atlantic (27,27.25] 0.9046128 0.8742524 0.9305217
sal + temp Atlantic (27.25,27.5] 0.9191653 0.8888882 0.9401618
sal + temp Atlantic (27.5,27.75] 0.8944166 0.8858784 0.8989430
sal + temp Atlantic (27.75,27.85] 0.8332462 0.8290050 0.8394834
sal + temp Atlantic (27.85,27.95] 0.6890551 0.6663291 0.7119323
sal + temp Atlantic (27.95,28.05] 0.6187420 0.5492493 0.6878980
sal + temp Atlantic (28.05,28.1] 0.7570292 0.6497860 0.8317068
sal + temp Atlantic (28.1,28.15] 0.7553921 0.7191865 0.7860245
sal + temp Atlantic (28.15,28.2] 0.8526561 0.6630433 0.9746525
sal + temp Atlantic (28.2, Inf] 0.0397178 -0.3596448 0.6007466
sal + temp Indian (-Inf,26] 0.5152858 0.4404487 0.5698912
sal + temp Indian (26,26.5] 0.6844822 0.5049949 0.7768108
sal + temp Indian (26.5,26.75] 0.7817704 0.6584511 0.9044586
sal + temp Indian (26.75,27] 0.8673373 0.6773403 0.9654340
sal + temp Indian (27,27.25] 0.7976031 0.4391533 0.9771462
sal + temp Indian (27.25,27.5] 0.7876021 0.4423621 0.9674689
sal + temp Indian (27.5,27.75] 0.6374775 0.1679240 0.8800768
sal + temp Indian (27.75,27.85] 0.4270204 -0.1024248 0.7104638
sal + temp Indian (27.85,27.95] 0.4726138 0.0879757 0.6662541
sal + temp Indian (27.95,28.05] 0.6969218 0.6835828 0.7147732
sal + temp Indian (28.05,28.1] 0.6686938 0.6063821 0.7183820
sal + temp Indian (28.1, Inf] 0.7269623 0.6796547 0.8061937
sal + temp Pacific (-Inf,26] 0.7434718 0.6915604 0.8257246
sal + temp Pacific (26,26.5] 0.8206853 0.7613362 0.8513416
sal + temp Pacific (26.5,26.75] 0.8570891 0.8066174 0.8896379
sal + temp Pacific (26.75,27] 0.8560634 0.7922794 0.9243153
sal + temp Pacific (27,27.25] 0.7372083 0.6662677 0.7920863
sal + temp Pacific (27.25,27.5] 0.4558430 0.3543674 0.5397666
sal + temp Pacific (27.5,27.75] 0.3292660 0.2790126 0.3908230
sal + temp Pacific (27.75,27.85] 0.3081892 0.0861299 0.5159762
sal + temp Pacific (27.85,27.95] 0.2293874 0.1868070 0.2567561
sal + temp Pacific (27.95,28.05] 0.0894949 -0.0708824 0.1758468
sal + temp Pacific (28.05,28.1] 0.2050085 -0.0574955 0.3382951
sal + temp Pacific (28.1, Inf] 0.6943005 0.6114993 0.8556828
silicate + phosphate Atlantic (-Inf,26] 0.0816628 -0.0663379 0.2667355
silicate + phosphate Atlantic (26,26.5] 0.4191551 0.3810106 0.4611022
silicate + phosphate Atlantic (26.5,26.75] 0.7180579 0.6477713 0.7804696
silicate + phosphate Atlantic (26.75,27] 0.7516532 0.7155135 0.7797290
silicate + phosphate Atlantic (27,27.25] 0.8267482 0.7859090 0.8567361
silicate + phosphate Atlantic (27.25,27.5] 0.8376828 0.8123314 0.8786690
silicate + phosphate Atlantic (27.5,27.75] 0.8733952 0.8344853 0.9202905
silicate + phosphate Atlantic (27.75,27.85] 0.9084778 0.8854615 0.9357798
silicate + phosphate Atlantic (27.85,27.95] 0.9248497 0.9051459 0.9434062
silicate + phosphate Atlantic (27.95,28.05] 0.9413247 0.9327600 0.9567437
silicate + phosphate Atlantic (28.05,28.1] 0.9574931 0.9520258 0.9608677
silicate + phosphate Atlantic (28.1,28.15] 0.9472972 0.9382417 0.9613175
silicate + phosphate Atlantic (28.15,28.2] 0.9409039 0.9168938 0.9623819
silicate + phosphate Atlantic (28.2, Inf] 0.8898254 0.8441218 0.9203261
silicate + phosphate Indian (-Inf,26] 0.9339934 0.9003693 0.9718448
silicate + phosphate Indian (26,26.5] 0.9319080 0.9082013 0.9704588
silicate + phosphate Indian (26.5,26.75] 0.9440717 0.9285273 0.9714745
silicate + phosphate Indian (26.75,27] 0.9633613 0.9467371 0.9918596
silicate + phosphate Indian (27,27.25] 0.9596959 0.9371378 0.9916284
silicate + phosphate Indian (27.25,27.5] 0.9614055 0.9535049 0.9709023
silicate + phosphate Indian (27.5,27.75] 0.9603915 0.9394562 0.9738524
silicate + phosphate Indian (27.75,27.85] 0.9748247 0.9548929 0.9854013
silicate + phosphate Indian (27.85,27.95] 0.9673721 0.9501584 0.9801293
silicate + phosphate Indian (27.95,28.05] 0.9372584 0.9083188 0.9586720
silicate + phosphate Indian (28.05,28.1] 0.8980633 0.8312386 0.9657644
silicate + phosphate Indian (28.1, Inf] 0.8631487 0.8322436 0.9045690
silicate + phosphate Pacific (-Inf,26] 0.9284561 0.8975964 0.9536497
silicate + phosphate Pacific (26,26.5] 0.8802720 0.8341766 0.9133750
silicate + phosphate Pacific (26.5,26.75] 0.8349092 0.8118590 0.8722889
silicate + phosphate Pacific (26.75,27] 0.9014642 0.8859591 0.9208742
silicate + phosphate Pacific (27,27.25] 0.9475502 0.9351143 0.9593293
silicate + phosphate Pacific (27.25,27.5] 0.9443332 0.9321735 0.9596511
silicate + phosphate Pacific (27.5,27.75] 0.9542977 0.9457069 0.9615006
silicate + phosphate Pacific (27.75,27.85] 0.9726450 0.9623537 0.9791362
silicate + phosphate Pacific (27.85,27.95] 0.9638223 0.9565225 0.9690439
silicate + phosphate Pacific (27.95,28.05] 0.8749884 0.8628999 0.8831329
silicate + phosphate Pacific (28.05,28.1] 0.8745498 0.8452716 0.8999892
silicate + phosphate Pacific (28.1, Inf] 0.9588518 0.9471606 0.9797459
silicate + phosphate_star Atlantic (-Inf,26] -0.0908419 -0.1083010 -0.0640294
silicate + phosphate_star Atlantic (26,26.5] 0.2271969 0.1389982 0.3348389
silicate + phosphate_star Atlantic (26.5,26.75] 0.6781728 0.6030475 0.7610838
silicate + phosphate_star Atlantic (26.75,27] 0.8055752 0.7828067 0.8429602
silicate + phosphate_star Atlantic (27,27.25] 0.8493666 0.8462741 0.8540765
silicate + phosphate_star Atlantic (27.25,27.5] 0.9129732 0.9017389 0.9300847
silicate + phosphate_star Atlantic (27.5,27.75] 0.9563146 0.9481326 0.9682150
silicate + phosphate_star Atlantic (27.75,27.85] 0.9531277 0.9434873 0.9609592
silicate + phosphate_star Atlantic (27.85,27.95] 0.9515868 0.9334353 0.9607322
silicate + phosphate_star Atlantic (27.95,28.05] 0.9497969 0.9367614 0.9566382
silicate + phosphate_star Atlantic (28.05,28.1] 0.9205387 0.9091395 0.9347223
silicate + phosphate_star Atlantic (28.1,28.15] 0.9244264 0.9084781 0.9549784
silicate + phosphate_star Atlantic (28.15,28.2] 0.9348328 0.9126071 0.9584807
silicate + phosphate_star Atlantic (28.2, Inf] 0.8529064 0.7329350 0.9333370
silicate + phosphate_star Indian (-Inf,26] 0.8497856 0.8193369 0.9060223
silicate + phosphate_star Indian (26,26.5] 0.7075778 0.6464267 0.7451884
silicate + phosphate_star Indian (26.5,26.75] 0.4145654 0.2518989 0.5249186
silicate + phosphate_star Indian (26.75,27] 0.3488547 0.2414092 0.4727007
silicate + phosphate_star Indian (27,27.25] -0.0852403 -0.2610948 0.0429769
silicate + phosphate_star Indian (27.25,27.5] -0.1837775 -0.3692250 -0.0809711
silicate + phosphate_star Indian (27.5,27.75] -0.1260650 -0.2827288 0.0249230
silicate + phosphate_star Indian (27.75,27.85] -0.1909689 -0.4308866 0.0307942
silicate + phosphate_star Indian (27.85,27.95] -0.1803481 -0.3160126 -0.0505890
silicate + phosphate_star Indian (27.95,28.05] -0.2161092 -0.5969080 0.0246956
silicate + phosphate_star Indian (28.05,28.1] -0.2776325 -0.6130203 0.1553575
silicate + phosphate_star Indian (28.1, Inf] -0.2556641 -0.4678257 -0.1082922
silicate + phosphate_star Pacific (-Inf,26] 0.8731355 0.8351945 0.9100387
silicate + phosphate_star Pacific (26,26.5] 0.8301226 0.7700417 0.8695667
silicate + phosphate_star Pacific (26.5,26.75] 0.8098108 0.7792353 0.8509026
silicate + phosphate_star Pacific (26.75,27] 0.6998034 0.6525124 0.7249783
silicate + phosphate_star Pacific (27,27.25] 0.3240814 0.2769669 0.3575711
silicate + phosphate_star Pacific (27.25,27.5] 0.0622465 -0.1016553 0.2135024
silicate + phosphate_star Pacific (27.5,27.75] 0.3212071 -0.1040388 0.6996059
silicate + phosphate_star Pacific (27.75,27.85] -0.0323320 -0.0558524 0.0011496
silicate + phosphate_star Pacific (27.85,27.95] 0.0424661 -0.0519789 0.1027947
silicate + phosphate_star Pacific (27.95,28.05] 0.1302003 -0.0570350 0.2429507
silicate + phosphate_star Pacific (28.05,28.1] 0.1430339 -0.0455004 0.3179466
silicate + phosphate_star Pacific (28.1, Inf] -0.4761339 -0.5185847 -0.3949545
temp + aou Atlantic (-Inf,26] -0.6720883 -0.7629737 -0.5386789
temp + aou Atlantic (26,26.5] -0.5404985 -0.6376012 -0.4578697
temp + aou Atlantic (26.5,26.75] -0.1389435 -0.2314994 -0.0068583
temp + aou Atlantic (26.75,27] 0.2845985 0.2295098 0.3250671
temp + aou Atlantic (27,27.25] 0.4205678 0.3192872 0.5724016
temp + aou Atlantic (27.25,27.5] 0.4165972 0.3515714 0.5100864
temp + aou Atlantic (27.5,27.75] 0.2474639 0.2015171 0.2808952
temp + aou Atlantic (27.75,27.85] 0.1983965 0.1146637 0.3269487
temp + aou Atlantic (27.85,27.95] 0.1023392 0.0489918 0.1415456
temp + aou Atlantic (27.95,28.05] -0.1371814 -0.2450801 -0.0644498
temp + aou Atlantic (28.05,28.1] -0.3211214 -0.3884201 -0.2525146
temp + aou Atlantic (28.1,28.15] -0.4922790 -0.5740573 -0.3607376
temp + aou Atlantic (28.15,28.2] -0.8987720 -0.9402026 -0.8373525
temp + aou Atlantic (28.2, Inf] -0.7487056 -0.9334774 -0.4017758
temp + aou Indian (-Inf,26] -0.5439234 -0.5875928 -0.5009034
temp + aou Indian (26,26.5] -0.3093935 -0.5380214 -0.1786445
temp + aou Indian (26.5,26.75] 0.0546883 -0.0483546 0.1431484
temp + aou Indian (26.75,27] 0.2818996 0.1359449 0.4050404
temp + aou Indian (27,27.25] 0.6355937 0.5959490 0.7006572
temp + aou Indian (27.25,27.5] 0.6511867 0.5538103 0.7889488
temp + aou Indian (27.5,27.75] 0.5457373 0.4147002 0.6670526
temp + aou Indian (27.75,27.85] 0.5150344 0.3343474 0.6712864
temp + aou Indian (27.85,27.95] 0.6063758 0.5250279 0.7221395
temp + aou Indian (27.95,28.05] 0.6558105 0.4535606 0.8044593
temp + aou Indian (28.05,28.1] 0.7567186 0.6549641 0.8565890
temp + aou Indian (28.1, Inf] 0.7589710 0.7332438 0.7899079
temp + aou Pacific (-Inf,26] -0.6008101 -0.7410123 -0.4437084
temp + aou Pacific (26,26.5] -0.3759945 -0.5637725 -0.1499733
temp + aou Pacific (26.5,26.75] -0.2780422 -0.5015783 -0.1109809
temp + aou Pacific (26.75,27] -0.3000067 -0.4079956 -0.2451798
temp + aou Pacific (27,27.25] -0.0717606 -0.1539186 0.0078643
temp + aou Pacific (27.25,27.5] 0.2463725 0.1401563 0.3414706
temp + aou Pacific (27.5,27.75] 0.3771577 0.2996007 0.4594109
temp + aou Pacific (27.75,27.85] 0.4410390 0.4037991 0.5062970
temp + aou Pacific (27.85,27.95] 0.4790908 0.3896993 0.5827735
temp + aou Pacific (27.95,28.05] 0.5833824 0.4760372 0.6479183
temp + aou Pacific (28.05,28.1] 0.6236536 0.5309658 0.7227866
temp + aou Pacific (28.1, Inf] 0.8383901 0.7867570 0.8974617
temp + oxygen Atlantic (-Inf,26] 0.3950512 0.1841742 0.5597551
temp + oxygen Atlantic (26,26.5] 0.1615791 0.0221588 0.3245498
temp + oxygen Atlantic (26.5,26.75] -0.1063854 -0.2035241 -0.0548531
temp + oxygen Atlantic (26.75,27] -0.4691111 -0.5019403 -0.4379559
temp + oxygen Atlantic (27,27.25] -0.5988256 -0.7035345 -0.5363507
temp + oxygen Atlantic (27.25,27.5] -0.6260276 -0.6795988 -0.5718590
temp + oxygen Atlantic (27.5,27.75] -0.5679453 -0.6508144 -0.4975680
temp + oxygen Atlantic (27.75,27.85] -0.5935683 -0.6747330 -0.5468244
temp + oxygen Atlantic (27.85,27.95] -0.5408943 -0.5726231 -0.5158965
temp + oxygen Atlantic (27.95,28.05] -0.2840693 -0.3635909 -0.1583212
temp + oxygen Atlantic (28.05,28.1] -0.1197808 -0.2014234 0.0018227
temp + oxygen Atlantic (28.1,28.15] 0.0519819 -0.1816441 0.2271351
temp + oxygen Atlantic (28.15,28.2] 0.7792923 0.6512349 0.8652280
temp + oxygen Atlantic (28.2, Inf] 0.5250344 0.0767545 0.7868865
temp + oxygen Indian (-Inf,26] 0.4342171 0.3978745 0.4764978
temp + oxygen Indian (26,26.5] 0.1963625 0.0678545 0.4503427
temp + oxygen Indian (26.5,26.75] -0.1716882 -0.2449040 -0.0986950
temp + oxygen Indian (26.75,27] -0.4464281 -0.5226431 -0.3252683
temp + oxygen Indian (27,27.25] -0.7299499 -0.7837551 -0.6915212
temp + oxygen Indian (27.25,27.5] -0.7452499 -0.8589047 -0.6554092
temp + oxygen Indian (27.5,27.75] -0.6592019 -0.7695294 -0.5444668
temp + oxygen Indian (27.75,27.85] -0.6284152 -0.7609074 -0.4834628
temp + oxygen Indian (27.85,27.95] -0.7074922 -0.8124615 -0.6354423
temp + oxygen Indian (27.95,28.05] -0.7496702 -0.8605572 -0.6013415
temp + oxygen Indian (28.05,28.1] -0.8262047 -0.9028773 -0.7426881
temp + oxygen Indian (28.1, Inf] -0.8276428 -0.8540987 -0.8133285
temp + oxygen Pacific (-Inf,26] 0.3015012 0.0647756 0.5367359
temp + oxygen Pacific (26,26.5] 0.1744720 -0.0581793 0.3792694
temp + oxygen Pacific (26.5,26.75] 0.0947132 -0.0691142 0.3255194
temp + oxygen Pacific (26.75,27] 0.1134943 0.0323394 0.2239671
temp + oxygen Pacific (27,27.25] -0.0678211 -0.1469925 0.0097787
temp + oxygen Pacific (27.25,27.5] -0.3366266 -0.4259750 -0.2366594
temp + oxygen Pacific (27.5,27.75] -0.4689123 -0.5335540 -0.3938875
temp + oxygen Pacific (27.75,27.85] -0.5057618 -0.5612947 -0.4730486
temp + oxygen Pacific (27.85,27.95] -0.5402510 -0.6271610 -0.4616717
temp + oxygen Pacific (27.95,28.05] -0.6359834 -0.6911118 -0.5382777
temp + oxygen Pacific (28.05,28.1] -0.6802118 -0.7666580 -0.6056249
temp + oxygen Pacific (28.1, Inf] -0.8722874 -0.9205937 -0.8296699
temp + phosphate Atlantic (-Inf,26] -0.8335793 -0.8828315 -0.7802944
temp + phosphate Atlantic (26,26.5] -0.8100225 -0.8246403 -0.7876299
temp + phosphate Atlantic (26.5,26.75] -0.5341039 -0.6166706 -0.3912301
temp + phosphate Atlantic (26.75,27] -0.2134845 -0.2828781 -0.1630128
temp + phosphate Atlantic (27,27.25] -0.0891005 -0.2438461 0.0658568
temp + phosphate Atlantic (27.25,27.5] -0.2330293 -0.3758469 -0.1526885
temp + phosphate Atlantic (27.5,27.75] -0.3493438 -0.3846006 -0.2974933
temp + phosphate Atlantic (27.75,27.85] -0.3163477 -0.3737054 -0.2241974
temp + phosphate Atlantic (27.85,27.95] -0.4061063 -0.4237881 -0.3937812
temp + phosphate Atlantic (27.95,28.05] -0.5291909 -0.5891062 -0.4889012
temp + phosphate Atlantic (28.05,28.1] -0.6618788 -0.7014509 -0.6151111
temp + phosphate Atlantic (28.1,28.15] -0.7351846 -0.7695376 -0.6820398
temp + phosphate Atlantic (28.15,28.2] -0.9303277 -0.9474965 -0.8964805
temp + phosphate Atlantic (28.2, Inf] -0.8436920 -0.9582622 -0.6724190
temp + phosphate Indian (-Inf,26] -0.6437061 -0.6847743 -0.5795481
temp + phosphate Indian (26,26.5] -0.5009608 -0.6847629 -0.3495855
temp + phosphate Indian (26.5,26.75] -0.2214763 -0.3695373 -0.0720598
temp + phosphate Indian (26.75,27] -0.1939573 -0.3517850 0.0546894
temp + phosphate Indian (27,27.25] 0.2728372 0.2017804 0.3428846
temp + phosphate Indian (27.25,27.5] 0.3308577 0.2477615 0.4812265
temp + phosphate Indian (27.5,27.75] 0.2828090 0.1331508 0.4078063
temp + phosphate Indian (27.75,27.85] 0.3423836 0.0685242 0.5781123
temp + phosphate Indian (27.85,27.95] 0.4324916 0.3353781 0.5655225
temp + phosphate Indian (27.95,28.05] 0.4720093 0.1315949 0.7323247
temp + phosphate Indian (28.05,28.1] 0.6235563 0.4938705 0.8088112
temp + phosphate Indian (28.1, Inf] 0.6737957 0.6089232 0.7275493
temp + phosphate Pacific (-Inf,26] -0.7217608 -0.8290806 -0.5947047
temp + phosphate Pacific (26,26.5] -0.5432182 -0.7006819 -0.3488328
temp + phosphate Pacific (26.5,26.75] -0.4415297 -0.6367997 -0.2851690
temp + phosphate Pacific (26.75,27] -0.4605093 -0.5694342 -0.4053966
temp + phosphate Pacific (27,27.25] -0.2602661 -0.3579932 -0.1682613
temp + phosphate Pacific (27.25,27.5] 0.1127930 -0.0174485 0.2384753
temp + phosphate Pacific (27.5,27.75] 0.2992471 0.2192951 0.3482012
temp + phosphate Pacific (27.75,27.85] 0.3367409 0.2880085 0.4315999
temp + phosphate Pacific (27.85,27.95] 0.3791520 0.2756578 0.5180601
temp + phosphate Pacific (27.95,28.05] 0.5154442 0.3984076 0.5937798
temp + phosphate Pacific (28.05,28.1] 0.5626052 0.4081431 0.6861098
temp + phosphate Pacific (28.1, Inf] 0.8481280 0.7987434 0.9313699
temp + phosphate_star Atlantic (-Inf,26] -0.9198020 -0.9378615 -0.9009375
temp + phosphate_star Atlantic (26,26.5] -0.9379159 -0.9527137 -0.9175262
temp + phosphate_star Atlantic (26.5,26.75] -0.9413641 -0.9564828 -0.9336982
temp + phosphate_star Atlantic (26.75,27] -0.9063469 -0.9166526 -0.8949973
temp + phosphate_star Atlantic (27,27.25] -0.7930730 -0.8045271 -0.7868098
temp + phosphate_star Atlantic (27.25,27.5] -0.8000435 -0.8084371 -0.7929093
temp + phosphate_star Atlantic (27.5,27.75] -0.7465826 -0.7727547 -0.7165687
temp + phosphate_star Atlantic (27.75,27.85] -0.6869769 -0.7108142 -0.6469649
temp + phosphate_star Atlantic (27.85,27.95] -0.7111650 -0.7300914 -0.6881690
temp + phosphate_star Atlantic (27.95,28.05] -0.7864090 -0.8069809 -0.7591156
temp + phosphate_star Atlantic (28.05,28.1] -0.8618864 -0.8708157 -0.8464802
temp + phosphate_star Atlantic (28.1,28.15] -0.8902874 -0.9038086 -0.8806947
temp + phosphate_star Atlantic (28.15,28.2] -0.9579131 -0.9673692 -0.9412569
temp + phosphate_star Atlantic (28.2, Inf] -0.8881838 -0.9668069 -0.7872846
temp + phosphate_star Indian (-Inf,26] -0.8674484 -0.9141446 -0.7891046
temp + phosphate_star Indian (26,26.5] -0.9142485 -0.9529699 -0.8443821
temp + phosphate_star Indian (26.5,26.75] -0.9349214 -0.9734222 -0.8600239
temp + phosphate_star Indian (26.75,27] -0.9756500 -0.9912750 -0.9507250
temp + phosphate_star Indian (27,27.25] -0.9813797 -0.9939690 -0.9651588
temp + phosphate_star Indian (27.25,27.5] -0.9865614 -0.9951023 -0.9733225
temp + phosphate_star Indian (27.5,27.75] -0.9853991 -0.9880785 -0.9804254
temp + phosphate_star Indian (27.75,27.85] -0.9665507 -0.9783992 -0.9470622
temp + phosphate_star Indian (27.85,27.95] -0.9181542 -0.9426664 -0.8920309
temp + phosphate_star Indian (27.95,28.05] -0.8605916 -0.8990138 -0.8148799
temp + phosphate_star Indian (28.05,28.1] -0.8414821 -0.8738332 -0.8168059
temp + phosphate_star Indian (28.1, Inf] -0.7526843 -0.7969553 -0.6803565
temp + phosphate_star Pacific (-Inf,26] -0.9290072 -0.9462820 -0.9093265
temp + phosphate_star Pacific (26,26.5] -0.9288826 -0.9546204 -0.9085779
temp + phosphate_star Pacific (26.5,26.75] -0.9306816 -0.9503837 -0.9153273
temp + phosphate_star Pacific (26.75,27] -0.9226132 -0.9449846 -0.8921922
temp + phosphate_star Pacific (27,27.25] -0.9100588 -0.9253085 -0.8855414
temp + phosphate_star Pacific (27.25,27.5] -0.8037031 -0.8858108 -0.6487152
temp + phosphate_star Pacific (27.5,27.75] -0.4387001 -0.9275844 -0.0135138
temp + phosphate_star Pacific (27.75,27.85] -0.9168740 -0.9382412 -0.8793759
temp + phosphate_star Pacific (27.85,27.95] -0.8781358 -0.9289422 -0.8035747
temp + phosphate_star Pacific (27.95,28.05] -0.7682837 -0.8457630 -0.7146496
temp + phosphate_star Pacific (28.05,28.1] -0.6404463 -0.7225623 -0.4890336
temp + phosphate_star Pacific (28.1, Inf] -0.6351827 -0.6620222 -0.5958222
temp + silicate Atlantic (-Inf,26] 0.0288033 -0.0523292 0.1233124
temp + silicate Atlantic (26,26.5] -0.2096853 -0.2567820 -0.1277868
temp + silicate Atlantic (26.5,26.75] -0.6611858 -0.7228797 -0.6029525
temp + silicate Atlantic (26.75,27] -0.6268697 -0.6487842 -0.6030185
temp + silicate Atlantic (27,27.25] -0.4254369 -0.4386885 -0.4051332
temp + silicate Atlantic (27.25,27.5] -0.5489860 -0.5620338 -0.5287162
temp + silicate Atlantic (27.5,27.75] -0.5798366 -0.6439179 -0.5354495
temp + silicate Atlantic (27.75,27.85] -0.5155419 -0.5548992 -0.4518333
temp + silicate Atlantic (27.85,27.95] -0.5939329 -0.6249447 -0.5435834
temp + silicate Atlantic (27.95,28.05] -0.6782459 -0.7202719 -0.6238681
temp + silicate Atlantic (28.05,28.1] -0.7030583 -0.7338650 -0.6556043
temp + silicate Atlantic (28.1,28.15] -0.7386551 -0.7495434 -0.7202490
temp + silicate Atlantic (28.15,28.2] -0.8432554 -0.8741377 -0.8024270
temp + silicate Atlantic (28.2, Inf] -0.6665382 -0.8050057 -0.4294664
temp + silicate Indian (-Inf,26] -0.5809082 -0.5989004 -0.5625613
temp + silicate Indian (26,26.5] -0.4750895 -0.5351584 -0.4246099
temp + silicate Indian (26.5,26.75] -0.2079249 -0.3747025 -0.0594424
temp + silicate Indian (26.75,27] -0.2458684 -0.4027733 -0.0573302
temp + silicate Indian (27,27.25] 0.1626764 0.0532150 0.2922804
temp + silicate Indian (27.25,27.5] 0.2245461 0.1425872 0.3630445
temp + silicate Indian (27.5,27.75] 0.1689780 0.0363972 0.2733650
temp + silicate Indian (27.75,27.85] 0.2944736 0.0795496 0.4811254
temp + silicate Indian (27.85,27.95] 0.3676631 0.2784169 0.4792690
temp + silicate Indian (27.95,28.05] 0.3858170 0.1728657 0.6743591
temp + silicate Indian (28.05,28.1] 0.4374825 0.1951745 0.6484979
temp + silicate Indian (28.1, Inf] 0.5275424 0.4908955 0.5982025
temp + silicate Pacific (-Inf,26] -0.7728312 -0.8424160 -0.7012709
temp + silicate Pacific (26,26.5] -0.7047466 -0.7825003 -0.6004176
temp + silicate Pacific (26.5,26.75] -0.6911283 -0.7693916 -0.6243891
temp + silicate Pacific (26.75,27] -0.6225462 -0.6591465 -0.5956300
temp + silicate Pacific (27,27.25] -0.3847166 -0.4342018 -0.3365249
temp + silicate Pacific (27.25,27.5] -0.0730879 -0.1456101 0.0164534
temp + silicate Pacific (27.5,27.75] 0.2176702 0.1358957 0.3450641
temp + silicate Pacific (27.75,27.85] 0.2434178 0.2152366 0.2644069
temp + silicate Pacific (27.85,27.95] 0.2611194 0.1792529 0.3467591
temp + silicate Pacific (27.95,28.05] 0.2693917 0.1746945 0.3295770
temp + silicate Pacific (28.05,28.1] 0.4461256 0.3870606 0.4897626
temp + silicate Pacific (28.1, Inf] 0.8068705 0.7344441 0.9134671
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
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
aou Atlantic (-Inf,26] 0.3668452 0.0690252 0.6487026
aou Atlantic (26,26.5] 0.1441490 -0.0713246 0.3190726
aou Atlantic (26.5,26.75] 0.0820497 -0.2889547 0.4875130
aou Atlantic (26.75,27] -0.0255753 -0.2538371 0.2168933
aou Atlantic (27,27.25] -0.3386533 -0.3741403 -0.2945590
aou Atlantic (27.25,27.5] -0.2979230 -0.3581480 -0.2277790
aou Atlantic (27.5,27.75] -0.5054642 -0.5419051 -0.4835705
aou Atlantic (27.75,27.85] -0.7307825 -0.7580495 -0.6906870
aou Atlantic (27.85,27.95] -0.6908152 -0.7452725 -0.6610818
aou Atlantic (27.95,28.05] -0.7851980 -0.8417390 -0.7040763
aou Atlantic (28.05,28.1] -0.8220202 -0.8323686 -0.8143574
aou Atlantic (28.1,28.15] -0.8909953 -0.9130252 -0.8644125
aou Atlantic (28.15,28.2] -0.9670716 -0.9872520 -0.9517518
aou Atlantic (28.2, Inf] -0.8412763 -0.9478101 -0.6326257
aou Indian (-Inf,26] -0.4298836 -0.6970782 -0.2662053
aou Indian (26,26.5] -0.7144161 -0.9437174 -0.4704186
aou Indian (26.5,26.75] -0.7859516 -0.9222328 -0.6692854
aou Indian (26.75,27] -0.4919750 -0.5692487 -0.4232120
aou Indian (27,27.25] -0.2071932 -0.3951466 0.0459132
aou Indian (27.25,27.5] -0.0356168 -0.2069615 0.2191782
aou Indian (27.5,27.75] -0.1179935 -0.4846208 0.3139603
aou Indian (27.75,27.85] -0.3451435 -0.8019411 0.1978976
aou Indian (27.85,27.95] -0.5392501 -0.8582415 -0.1180417
aou Indian (27.95,28.05] -0.7379479 -0.9489354 -0.5558700
aou Indian (28.05,28.1] -0.7522973 -0.9119613 -0.4846339
aou Indian (28.1, Inf] -0.0616435 -0.2569029 0.2159332
aou Pacific (-Inf,26] 0.1223500 -0.0511397 0.2824373
aou Pacific (26,26.5] -0.4396402 -0.5243743 -0.3314401
aou Pacific (26.5,26.75] -0.6426445 -0.6666693 -0.6010716
aou Pacific (26.75,27] -0.7159797 -0.8065568 -0.6273006
aou Pacific (27,27.25] -0.1934565 -0.4015267 -0.0057645
aou Pacific (27.25,27.5] 0.2018570 -0.1249110 0.4725558
aou Pacific (27.5,27.75] 0.1478857 -0.2786436 0.5969963
aou Pacific (27.75,27.85] 0.5499925 0.4080419 0.6773214
aou Pacific (27.85,27.95] 0.5332333 0.4131374 0.7351859
aou Pacific (27.95,28.05] 0.4879061 0.3897880 0.6614279
aou Pacific (28.05,28.1] 0.6260655 0.5979892 0.6428736
aou Pacific (28.1, Inf] 0.4915968 0.2154255 0.6718631
oxygen Atlantic (-Inf,26] -0.2432575 -0.5501830 0.0403950
oxygen Atlantic (26,26.5] -0.0335817 -0.1977478 0.1273796
oxygen Atlantic (26.5,26.75] -0.2130081 -0.5774746 0.1035507
oxygen Atlantic (26.75,27] -0.1041080 -0.3275528 0.1159675
oxygen Atlantic (27,27.25] 0.2370250 0.1909796 0.2767864
oxygen Atlantic (27.25,27.5] 0.1581798 0.0708450 0.2234854
oxygen Atlantic (27.5,27.75] 0.3233502 0.2812674 0.3532840
oxygen Atlantic (27.75,27.85] 0.5244949 0.4647303 0.5543791
oxygen Atlantic (27.85,27.95] 0.4548295 0.4074849 0.5140455
oxygen Atlantic (27.95,28.05] 0.5667827 0.4603774 0.6483736
oxygen Atlantic (28.05,28.1] 0.5720409 0.5314141 0.6405682
oxygen Atlantic (28.1,28.15] 0.6875493 0.5962220 0.7770833
oxygen Atlantic (28.15,28.2] 0.9272561 0.8834639 0.9751957
oxygen Atlantic (28.2, Inf] 0.7171659 0.4429909 0.8649309
oxygen Indian (-Inf,26] 0.4839931 0.3234122 0.7671612
oxygen Indian (26,26.5] 0.7068440 0.4741607 0.9476384
oxygen Indian (26.5,26.75] 0.7408169 0.6419241 0.8841864
oxygen Indian (26.75,27] 0.3523653 0.3022934 0.4101344
oxygen Indian (27,27.25] 0.1117157 -0.0848138 0.2798578
oxygen Indian (27.25,27.5] -0.0578262 -0.2552759 0.0953240
oxygen Indian (27.5,27.75] 0.0554866 -0.3136474 0.3857526
oxygen Indian (27.75,27.85] 0.3593011 -0.1450652 0.8117249
oxygen Indian (27.85,27.95] 0.5641359 0.1630145 0.8901503
oxygen Indian (27.95,28.05] 0.7050752 0.5223296 0.9516316
oxygen Indian (28.05,28.1] 0.7261917 0.4140093 0.9074982
oxygen Indian (28.1, Inf] 0.0472929 -0.2462730 0.2363363
oxygen Pacific (-Inf,26] 0.0446309 -0.1844202 0.2709079
oxygen Pacific (26,26.5] 0.4501924 0.3575296 0.5395142
oxygen Pacific (26.5,26.75] 0.6551240 0.6204770 0.6781317
oxygen Pacific (26.75,27] 0.7686344 0.7269684 0.8239977
oxygen Pacific (27,27.25] 0.2199917 0.0432842 0.4234403
oxygen Pacific (27.25,27.5] -0.1802697 -0.4404287 0.1384373
oxygen Pacific (27.5,27.75] -0.1556777 -0.5818495 0.2470892
oxygen Pacific (27.75,27.85] -0.5413689 -0.6778151 -0.3948541
oxygen Pacific (27.85,27.95] -0.5272808 -0.7350300 -0.4077598
oxygen Pacific (27.95,28.05] -0.4747986 -0.6499142 -0.3801182
oxygen Pacific (28.05,28.1] -0.6261731 -0.6342168 -0.6157828
oxygen Pacific (28.1, Inf] -0.4895924 -0.6648248 -0.2254309
phosphate Atlantic (-Inf,26] 0.4410198 0.2258042 0.6397918
phosphate Atlantic (26,26.5] 0.1458414 -0.1016983 0.2956314
phosphate Atlantic (26.5,26.75] -0.2215035 -0.6234555 0.1590832
phosphate Atlantic (26.75,27] -0.5008708 -0.6911039 -0.2818195
phosphate Atlantic (27,27.25] -0.8013163 -0.8293653 -0.7623933
phosphate Atlantic (27.25,27.5] -0.8662520 -0.8931964 -0.8244338
phosphate Atlantic (27.5,27.75] -0.9337609 -0.9497544 -0.9075919
phosphate Atlantic (27.75,27.85] -0.9597400 -0.9631220 -0.9547115
phosphate Atlantic (27.85,27.95] -0.9388735 -0.9504526 -0.9287464
phosphate Atlantic (27.95,28.05] -0.9517650 -0.9603574 -0.9468594
phosphate Atlantic (28.05,28.1] -0.9641676 -0.9741391 -0.9571623
phosphate Atlantic (28.1,28.15] -0.9666784 -0.9755342 -0.9558440
phosphate Atlantic (28.15,28.2] -0.9884936 -0.9952380 -0.9813720
phosphate Atlantic (28.2, Inf] -0.9747924 -0.9959655 -0.9389054
phosphate Indian (-Inf,26] -0.4407349 -0.6459096 -0.2689384
phosphate Indian (26,26.5] -0.7519459 -0.9252455 -0.5383702
phosphate Indian (26.5,26.75] -0.8729437 -0.9792886 -0.7631776
phosphate Indian (26.75,27] -0.8002158 -0.8873691 -0.6423712
phosphate Indian (27,27.25] -0.5047530 -0.7353616 -0.1304740
phosphate Indian (27.25,27.5] -0.3086726 -0.5479913 0.0803420
phosphate Indian (27.5,27.75] -0.2518642 -0.6711050 0.2770293
phosphate Indian (27.75,27.85] -0.3359619 -0.7751470 0.2456171
phosphate Indian (27.85,27.95] -0.4864369 -0.7583803 -0.0742754
phosphate Indian (27.95,28.05] -0.7716064 -0.8582023 -0.6471802
phosphate Indian (28.05,28.1] -0.8073803 -0.8832041 -0.6600619
phosphate Indian (28.1, Inf] -0.4230196 -0.5651307 -0.2052539
phosphate Pacific (-Inf,26] 0.1502340 0.0165597 0.2624291
phosphate Pacific (26,26.5] -0.4901431 -0.5666708 -0.3597315
phosphate Pacific (26.5,26.75] -0.6522498 -0.6918016 -0.6062486
phosphate Pacific (26.75,27] -0.7002648 -0.8223383 -0.5796041
phosphate Pacific (27,27.25] -0.2841925 -0.4953368 -0.0899259
phosphate Pacific (27.25,27.5] 0.0718483 -0.3495318 0.4127633
phosphate Pacific (27.5,27.75] -0.0835388 -0.6262380 0.5423757
phosphate Pacific (27.75,27.85] 0.5151129 0.3861295 0.6253537
phosphate Pacific (27.85,27.95] 0.5090953 0.3825914 0.6984049
phosphate Pacific (27.95,28.05] 0.4923216 0.3913191 0.6466230
phosphate Pacific (28.05,28.1] 0.6021908 0.5155640 0.6543687
phosphate Pacific (28.1, Inf] 0.4521455 0.2148846 0.5989644
phosphate_star Atlantic (-Inf,26] 0.4509844 0.3859597 0.4920937
phosphate_star Atlantic (26,26.5] 0.1558643 -0.0507417 0.2915269
phosphate_star Atlantic (26.5,26.75] -0.6169395 -0.8147366 -0.4590942
phosphate_star Atlantic (26.75,27] -0.8349007 -0.8498682 -0.8161157
phosphate_star Atlantic (27,27.25] -0.7769231 -0.8159621 -0.7503154
phosphate_star Atlantic (27.25,27.5] -0.8306274 -0.8594474 -0.8132343
phosphate_star Atlantic (27.5,27.75] -0.8286059 -0.8440884 -0.8047830
phosphate_star Atlantic (27.75,27.85] -0.8067209 -0.8351761 -0.7797778
phosphate_star Atlantic (27.85,27.95] -0.8540505 -0.8558331 -0.8519308
phosphate_star Atlantic (27.95,28.05] -0.8953368 -0.9099412 -0.8713991
phosphate_star Atlantic (28.05,28.1] -0.9210648 -0.9387598 -0.9088468
phosphate_star Atlantic (28.1,28.15] -0.9169878 -0.9380145 -0.8860947
phosphate_star Atlantic (28.15,28.2] -0.9826419 -0.9909591 -0.9777957
phosphate_star Atlantic (28.2, Inf] -0.9785172 -0.9915083 -0.9535214
phosphate_star Indian (-Inf,26] -0.2932597 -0.4085614 -0.1114183
phosphate_star Indian (26,26.5] -0.5522301 -0.6632533 -0.4394004
phosphate_star Indian (26.5,26.75] -0.5093231 -0.5657061 -0.4418967
phosphate_star Indian (26.75,27] -0.6600862 -0.7449532 -0.5242252
phosphate_star Indian (27,27.25] -0.4765657 -0.6490336 -0.3791736
phosphate_star Indian (27.25,27.5] -0.4931365 -0.6717100 -0.3891097
phosphate_star Indian (27.5,27.75] -0.2757305 -0.4913453 -0.1650766
phosphate_star Indian (27.75,27.85] 0.2516200 -0.0352623 0.6041547
phosphate_star Indian (27.85,27.95] 0.4258926 0.2676560 0.7385710
phosphate_star Indian (27.95,28.05] 0.2060749 -0.1390564 0.8297787
phosphate_star Indian (28.05,28.1] 0.2693141 -0.3747049 0.7407932
phosphate_star Indian (28.1, Inf] -0.3855656 -0.7669267 -0.1094882
phosphate_star Pacific (-Inf,26] 0.3056666 0.2855787 0.3238166
phosphate_star Pacific (26,26.5] -0.3489242 -0.5003072 -0.1572631
phosphate_star Pacific (26.5,26.75] -0.3289918 -0.3829143 -0.2339492
phosphate_star Pacific (26.75,27] -0.1996680 -0.3536201 0.0359635
phosphate_star Pacific (27,27.25] -0.1988465 -0.2421708 -0.1350312
phosphate_star Pacific (27.25,27.5] -0.4013038 -0.6204114 -0.2634597
phosphate_star Pacific (27.5,27.75] -0.6560419 -0.8775147 -0.3529620
phosphate_star Pacific (27.75,27.85] -0.2221902 -0.3432772 -0.1365925
phosphate_star Pacific (27.85,27.95] -0.1417254 -0.2237622 -0.0041044
phosphate_star Pacific (27.95,28.05] 0.0739824 -0.0569365 0.2811889
phosphate_star Pacific (28.05,28.1] -0.1152078 -0.3476250 0.0538770
phosphate_star Pacific (28.1, Inf] -0.4237967 -0.5727511 -0.1822304
sal Atlantic (-Inf,26] 0.0233345 -0.1291900 0.2441038
sal Atlantic (26,26.5] -0.2414834 -0.3687113 -0.0824333
sal Atlantic (26.5,26.75] 0.5072559 0.3128931 0.6757378
sal Atlantic (26.75,27] 0.6296110 0.5894561 0.6999752
sal Atlantic (27,27.25] 0.1974376 0.1628482 0.2162476
sal Atlantic (27.25,27.5] 0.2909597 0.2773103 0.3084590
sal Atlantic (27.5,27.75] 0.0141843 -0.0629235 0.0539408
sal Atlantic (27.75,27.85] -0.3040110 -0.4196611 -0.1730334
sal Atlantic (27.85,27.95] -0.3234460 -0.3565679 -0.3043641
sal Atlantic (27.95,28.05] -0.0475988 -0.0861420 -0.0201677
sal Atlantic (28.05,28.1] 0.3605513 0.1092255 0.5778042
sal Atlantic (28.1,28.15] 0.2502171 0.1222169 0.3731952
sal Atlantic (28.15,28.2] 0.7620898 0.4938760 0.9385118
sal Atlantic (28.2, Inf] -0.1572921 -0.4107613 0.2955696
sal Indian (-Inf,26] 0.6631485 0.5671626 0.8427621
sal Indian (26,26.5] 0.7112108 0.5397514 0.8837776
sal Indian (26.5,26.75] 0.6109437 0.4685254 0.7655409
sal Indian (26.75,27] 0.7133570 0.6356523 0.7985610
sal Indian (27,27.25] 0.5712665 0.3998475 0.7853829
sal Indian (27.25,27.5] 0.5082736 0.2401444 0.8266920
sal Indian (27.5,27.75] 0.3115479 -0.1151208 0.8662987
sal Indian (27.75,27.85] -0.0131682 -0.7023763 0.8296976
sal Indian (27.85,27.95] -0.2231747 -0.7669432 0.5167193
sal Indian (27.95,28.05] -0.4888302 -0.9026436 -0.2437469
sal Indian (28.05,28.1] -0.6221628 -0.8602421 -0.2799953
sal Indian (28.1, Inf] -0.2161937 -0.4562856 0.2137621
sal Pacific (-Inf,26] -0.1299227 -0.2358522 -0.0493603
sal Pacific (26,26.5] 0.0645401 -0.0910875 0.2067109
sal Pacific (26.5,26.75] -0.0120344 -0.1141025 0.1283021
sal Pacific (26.75,27] -0.1698060 -0.3943497 -0.0240028
sal Pacific (27,27.25] -0.4986450 -0.5972359 -0.4216486
sal Pacific (27.25,27.5] -0.8551598 -0.8956034 -0.8296946
sal Pacific (27.5,27.75] -0.6314333 -0.7126730 -0.5088828
sal Pacific (27.75,27.85] -0.1406076 -0.2989179 0.0757989
sal Pacific (27.85,27.95] 0.0542060 -0.1611365 0.2672552
sal Pacific (27.95,28.05] 0.2215333 0.0449591 0.3643262
sal Pacific (28.05,28.1] 0.2190894 0.0337126 0.3710345
sal Pacific (28.1, Inf] 0.2387861 -0.0606724 0.4106474
silicate Atlantic (-Inf,26] -0.7127880 -0.8281663 -0.5542973
silicate Atlantic (26,26.5] -0.5853559 -0.7586679 -0.4065556
silicate Atlantic (26.5,26.75] -0.5997455 -0.8105025 -0.3706231
silicate Atlantic (26.75,27] -0.8423759 -0.9235851 -0.7599890
silicate Atlantic (27,27.25] -0.9336065 -0.9515347 -0.9144402
silicate Atlantic (27.25,27.5] -0.9385491 -0.9496279 -0.9300865
silicate Atlantic (27.5,27.75] -0.9044694 -0.9101881 -0.8996911
silicate Atlantic (27.75,27.85] -0.8675838 -0.8756278 -0.8583723
silicate Atlantic (27.85,27.95] -0.8399128 -0.8498639 -0.8200344
silicate Atlantic (27.95,28.05] -0.8764790 -0.8964880 -0.8564465
silicate Atlantic (28.05,28.1] -0.9216573 -0.9382933 -0.9073697
silicate Atlantic (28.1,28.15] -0.9137416 -0.9228117 -0.9090936
silicate Atlantic (28.15,28.2] -0.9431351 -0.9736006 -0.9223904
silicate Atlantic (28.2, Inf] -0.8141097 -0.9195315 -0.6652735
silicate Indian (-Inf,26] -0.6024835 -0.7457620 -0.4474735
silicate Indian (26,26.5] -0.8488849 -0.9753255 -0.6817026
silicate Indian (26.5,26.75] -0.9180265 -0.9718416 -0.8418430
silicate Indian (26.75,27] -0.8361582 -0.9031326 -0.7307825
silicate Indian (27,27.25] -0.6076415 -0.7635554 -0.3202629
silicate Indian (27.25,27.5] -0.4144900 -0.6244898 -0.0765443
silicate Indian (27.5,27.75] -0.3672022 -0.7193364 0.0677381
silicate Indian (27.75,27.85] -0.3810281 -0.7408697 0.0671065
silicate Indian (27.85,27.95] -0.5074529 -0.7185185 -0.2046141
silicate Indian (27.95,28.05] -0.7444406 -0.8553407 -0.6583292
silicate Indian (28.05,28.1] -0.7946609 -0.8453155 -0.7214661
silicate Indian (28.1, Inf] -0.5918583 -0.7968835 -0.3427875
silicate Pacific (-Inf,26] 0.0612979 -0.0343522 0.1493744
silicate Pacific (26,26.5] -0.6077556 -0.6786457 -0.5100070
silicate Pacific (26.5,26.75] -0.6365565 -0.6919154 -0.5812374
silicate Pacific (26.75,27] -0.5547323 -0.6804875 -0.3631148
silicate Pacific (27,27.25] -0.2006143 -0.3937126 0.0195941
silicate Pacific (27.25,27.5] 0.1946655 -0.1671878 0.5204075
silicate Pacific (27.5,27.75] 0.0231191 -0.4813214 0.6163413
silicate Pacific (27.75,27.85] 0.5497864 0.4148834 0.6757682
silicate Pacific (27.85,27.95] 0.5488242 0.4237071 0.7354561
silicate Pacific (27.95,28.05] 0.6356702 0.5174940 0.8114086
silicate Pacific (28.05,28.1] 0.6305709 0.5698330 0.6653728
silicate Pacific (28.1, Inf] 0.3519841 0.1152692 0.4792008
temp Atlantic (-Inf,26] -0.5018183 -0.5315508 -0.4827629
temp Atlantic (26,26.5] -0.2989685 -0.4000993 -0.1495258
temp Atlantic (26.5,26.75] 0.5381514 0.3906036 0.7693028
temp Atlantic (26.75,27] 0.6144132 0.5969880 0.6233707
temp Atlantic (27,27.25] 0.2623046 0.2166800 0.3328594
temp Atlantic (27.25,27.5] 0.3509000 0.3237076 0.3914267
temp Atlantic (27.5,27.75] 0.2673526 0.2311973 0.3266209
temp Atlantic (27.75,27.85] 0.1463698 0.0462329 0.2226777
temp Atlantic (27.85,27.95] 0.2809673 0.2529282 0.3096122
temp Atlantic (27.95,28.05] 0.4701452 0.4354788 0.5269815
temp Atlantic (28.05,28.1] 0.6369440 0.6339971 0.6402969
temp Atlantic (28.1,28.15] 0.6644876 0.5879568 0.7130398
temp Atlantic (28.15,28.2] 0.9050690 0.8608981 0.9311037
temp Atlantic (28.2, Inf] 0.8425200 0.6861558 0.9518562
temp Indian (-Inf,26] -0.1782274 -0.2833395 -0.0739609
temp Indian (26,26.5] 0.2235912 -0.0449481 0.4234881
temp Indian (26.5,26.75] 0.2549422 0.0828627 0.4359710
temp Indian (26.75,27] 0.5352854 0.2830568 0.6692046
temp Indian (27,27.25] 0.3697078 0.1667660 0.5723600
temp Indian (27.25,27.5] 0.4319053 0.2615319 0.6401944
temp Indian (27.5,27.75] 0.2273370 0.0487027 0.4616003
temp Indian (27.75,27.85] -0.3338120 -0.6289815 -0.0791184
temp Indian (27.85,27.95] -0.5231756 -0.8149702 -0.3485508
temp Indian (27.95,28.05] -0.3294066 -0.8047736 0.0108962
temp Indian (28.05,28.1] -0.4565083 -0.7785969 -0.0073779
temp Indian (28.1, Inf] 0.0495121 -0.1382274 0.3445913
temp Pacific (-Inf,26] -0.4963511 -0.5246061 -0.4543643
temp Pacific (26,26.5] 0.0891064 -0.1061141 0.1942949
temp Pacific (26.5,26.75] 0.0618725 -0.0752910 0.1659420
temp Pacific (26.75,27] -0.0815264 -0.3401002 0.0504160
temp Pacific (27,27.25] -0.1434236 -0.2240217 -0.0871502
temp Pacific (27.25,27.5] -0.1186224 -0.1332054 -0.0984823
temp Pacific (27.5,27.75] 0.1659684 0.1484343 0.1803324
temp Pacific (27.75,27.85] 0.2017308 0.0827712 0.3612595
temp Pacific (27.85,27.95] 0.2267829 0.1302613 0.3430272
temp Pacific (27.95,28.05] 0.1447578 0.0571690 0.2053736
temp Pacific (28.05,28.1] 0.4151322 0.3226541 0.5341989
temp Pacific (28.1, Inf] 0.4212318 0.2733490 0.5191763
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.1

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.9000 GGally_2.0.0     lubridate_1.7.9  metR_0.8.0      
 [9] scico_1.2.0      patchwork_1.1.0  collapse_1.4.2   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.2    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.2.1          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.9             
[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.0 data.table_1.13.4       
[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.19                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_0.1