Last updated: 2021-03-23

Checks: 7 0

Knit directory: emlr_obs_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 31bcf6d. See the Past versions tab to see a history of the changes made to the R Markdown and HTML files.

Note that you need to be careful to ensure that all relevant files for the analysis have been committed to Git prior to generating the results (you can use wflow_publish or wflow_git_commit). workflowr only checks the R Markdown file, but you know if there are other scripts or data files that it depends on. Below is the status of the Git repository when the results were generated:


Ignored files:
    Ignored:    .Rhistory
    Ignored:    .Rproj.user/

Unstaged changes:
    Modified:   code/Workflowr_project_managment.R

Note that any generated files, e.g. HTML, png, CSS, etc., are not included in this status report because it is ok for generated content to have uncommitted changes.


These are the previous versions of the repository in which changes were made to the R Markdown (analysis/mapping_target_variable.Rmd) and HTML (docs/mapping_target_variable.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 f155edd jens-daniel-mueller 2021-03-23 Build site.
html 380d215 jens-daniel-mueller 2021-03-21 Build site.
html 33b385b jens-daniel-mueller 2021-03-20 Build site.
html 330dcd0 jens-daniel-mueller 2021-03-20 Build site.
html 83a13de jens-daniel-mueller 2021-03-20 Build site.
html cf98c6d jens-daniel-mueller 2021-03-16 Build site.
html a1d52ff jens-daniel-mueller 2021-03-15 Build site.
html 0bade3b jens-daniel-mueller 2021-03-15 Build site.
html 27c1f4b jens-daniel-mueller 2021-03-14 Build site.
html af75ebf jens-daniel-mueller 2021-03-14 Build site.
html 5017709 jens-daniel-mueller 2021-03-11 Build site.
html 585b07f jens-daniel-mueller 2021-03-11 Build site.
html 6482ed7 jens-daniel-mueller 2021-03-11 Build site.
html 85a5ed2 jens-daniel-mueller 2021-03-10 Build site.
html 00688a1 jens-daniel-mueller 2021-03-05 Build site.
html 6c0bec6 jens-daniel-mueller 2021-03-05 Build site.
html 3c2ec33 jens-daniel-mueller 2021-03-05 Build site.
html af70b94 jens-daniel-mueller 2021-03-04 Build site.
html 86406d5 jens-daniel-mueller 2021-02-24 Build site.
html 3d3b4cc jens-daniel-mueller 2021-02-23 Build site.
html 7b672f7 jens-daniel-mueller 2021-01-11 Build site.
html e5c81bf jens-daniel-mueller 2021-01-07 Build site.
Rmd fe13638 jens-daniel-mueller 2021-01-07 removed GLODAP gamma filter, target variable mapped by eras+era
html 318609d jens-daniel-mueller 2020-12-23 adapted more variable predictor selection
html 84ddb8b jens-daniel-mueller 2020-12-23 Build site.
html 0aa2b50 jens-daniel-mueller 2020-12-23 remove html before duplication
html 39113c3 jens-daniel-mueller 2020-12-23 Build site.
html 2886da0 jens-daniel-mueller 2020-12-19 Build site.
html 02f0ee9 jens-daniel-mueller 2020-12-18 cleaned up for copying template
html 965dba3 jens-daniel-mueller 2020-12-18 Build site.
html 2792743 jens-daniel-mueller 2020-12-18 Build site.
Rmd 05ef152 jens-daniel-mueller 2020-12-18 rebuild after final cleaning
html 4d3e354 jens-daniel-mueller 2020-12-18 Build site.
html 7bcb4eb jens-daniel-mueller 2020-12-18 Build site.
html d397028 jens-daniel-mueller 2020-12-18 Build site.
Rmd 7e1b1c0 jens-daniel-mueller 2020-12-18 rebuild without na predictors
html 7131186 jens-daniel-mueller 2020-12-17 Build site.
html 22b07fb jens-daniel-mueller 2020-12-17 Build site.
html f3a708f jens-daniel-mueller 2020-12-17 Build site.
html e4ca289 jens-daniel-mueller 2020-12-16 Build site.
html 158fe26 jens-daniel-mueller 2020-12-15 Build site.
html 7a9a4cb jens-daniel-mueller 2020-12-15 Build site.
html 61b263c jens-daniel-mueller 2020-12-15 Build site.
html 4d612dd jens-daniel-mueller 2020-12-15 Build site.
Rmd e7e5ff1 jens-daniel-mueller 2020-12-15 rebuild with eMLR target variable selection

1 Scope

Map 3d fields of the predicted target variable (either tco2, cstar or cstar_tref) based on fitted MLRs and climatological fields of predictor variables. In contrast to the direct Cant calculation based on coefficient differences, we apply here the fitted coefficients directly. Cant could also be estimates as the differences between the target variable fields mapped here.

2 Required data

2.1 Predictor fields

Currently, we use following combined predictor fields:

  • WOA18: S, T, and derived variables
  • GLODAP16: Oxygen, PO4, NO3, Silicate, and derived variables
predictors <-
  read_csv(paste(path_version_data,
                 "W18_st_G16_opsn.csv",
                 sep = ""))

2.2 MLR models

lm_best_target <-
  read_csv(paste(path_version_data,
                 "lm_best_target.csv",
                 sep = ""))

3 Join MLR + climatologies

# remove predictor variable from model
lm_best_target <- lm_best_target %>%
  mutate(model = str_remove(model, paste(params_local$MLR_target, "~ ")))

# join predictors and MLR
target <- full_join(predictors, lm_best_target)

rm(predictors, lm_best_target)

4 Map target variable

4.1 Apply MLRs to predictor

target <- b_target_model(target)

target <- target %>%
  select(lon,
         lat,
         depth,
         era,
         eras,
         basin,
         basin_AIP,
         gamma,
         params_local$MLR_target)

4.2 Average model target variable

target_average <- m_target_model_average(target)
target_average <- m_cut_gamma(target_average, "gamma")

rm(target)

4.3 Zonal mean sections

For each basin and era combination, the zonal mean of the target variable is calculated. Likewise, sd is calculated for the averaging of the mean basin fields.

target_average_zonal <- m_target_zonal_mean(target_average)
target_average_zonal <- m_cut_gamma(target_average_zonal, "gamma_mean")

5 Write csv

target_average %>%
  write_csv(paste(path_version_data,
                  "target_3d.csv",
                  sep = ""))

target_average_zonal %>%
  write_csv(paste(path_version_data,
                  "target_zonal.csv",
                  sep = ""))

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] metR_0.9.0      scico_1.2.0     patchwork_1.1.1 collapse_1.5.0 
 [5] forcats_0.5.0   stringr_1.4.0   dplyr_1.0.2     purrr_0.3.4    
 [9] readr_1.4.0     tidyr_1.1.2     tibble_3.0.4    ggplot2_3.3.2  
[13] tidyverse_1.3.0 workflowr_1.6.2

loaded via a namespace (and not attached):
 [1] Rcpp_1.0.5               here_0.1                 lubridate_1.7.9         
 [4] lattice_0.20-41          assertthat_0.2.1         rprojroot_2.0.2         
 [7] digest_0.6.27            R6_2.5.0                 cellranger_1.1.0        
[10] backports_1.1.10         reprex_0.3.0             evaluate_0.14           
[13] httr_1.4.2               pillar_1.4.7             rlang_0.4.9             
[16] readxl_1.3.1             data.table_1.13.2        rstudioapi_0.13         
[19] whisker_0.4              blob_1.2.1               Matrix_1.2-18           
[22] checkmate_2.0.0          rmarkdown_2.5            RcppEigen_0.3.3.7.0     
[25] munsell_0.5.0            broom_0.7.2              compiler_4.0.3          
[28] httpuv_1.5.4             modelr_0.1.8             xfun_0.18               
[31] pkgconfig_2.0.3          htmltools_0.5.0          tidyselect_1.1.0        
[34] fansi_0.4.1              crayon_1.3.4             dbplyr_1.4.4            
[37] withr_2.3.0              later_1.1.0.1            grid_4.0.3              
[40] jsonlite_1.7.1           gtable_0.3.0             lifecycle_0.2.0         
[43] DBI_1.1.0                git2r_0.27.1             magrittr_1.5            
[46] scales_1.1.1             cli_2.1.0                stringi_1.5.3           
[49] fs_1.5.0                 promises_1.1.1           RcppArmadillo_0.10.1.2.0
[52] xml2_1.3.2               ellipsis_0.3.1           generics_0.0.2          
[55] vctrs_0.3.5              tools_4.0.3              glue_1.4.2              
[58] hms_0.5.3                parallel_4.0.3           yaml_2.2.1              
[61] colorspace_1.4-1         rvest_0.3.6              knitr_1.30              
[64] haven_2.3.1