• 1 Select basin mask
  • 2 Extract surface data
  • 3 Air-sea disequilibrium

Last updated: 2022-05-12

Checks: 7 0

Knit directory: emlr_mod_preprocessing/

This reproducible R Markdown analysis was created with workflowr (version 1.7.0). The Checks tab describes the reproducibility checks that were applied when the results were created. The Past versions tab lists the development history.


Great! Since the R Markdown file has been committed to the Git repository, you know the exact version of the code that produced these results.

Great job! The global environment was empty. Objects defined in the global environment can affect the analysis in your R Markdown file in unknown ways. For reproduciblity it’s best to always run the code in an empty environment.

The command set.seed(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 b1c9920. 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/

Untracked files:
    Untracked:  analysis/RECCAP2_flux_products.Rmd
    Untracked:  code/backup_analysis_scripts/
    Untracked:  code/reprex_read_nc_file.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/surface_ocean.Rmd) and HTML (docs/surface_ocean.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
Rmd b1c9920 jens-daniel-mueller 2022-05-12 read data from all models and write individual files
html 06054b2 jens-daniel-mueller 2022-05-10 Build site.
Rmd d43e8c0 jens-daniel-mueller 2022-05-10 rerun all with multi model subsetting
html 872c786 jens-daniel-mueller 2022-05-05 Build site.
Rmd 7c4b38b jens-daniel-mueller 2022-05-05 rerun across multiple RECCAP models
html 9372960 Donghe-Zhu 2021-09-28 Build site.
html 2fb60d0 Donghe-Zhu 2021-07-07 Build site.
html 85b0624 Donghe-Zhu 2021-06-25 Build site.
Rmd 3be0461 Donghe-Zhu 2021-06-25 rerun all with surface ocean data
Rmd 61ff2aa Donghe-Zhu 2021-06-25 full run
html 8c6e49f jens-daniel-mueller 2021-06-17 Build site.
Rmd 29561c9 jens-daniel-mueller 2021-06-17 derive globally integrated scaling factor
html a64f00b jens-daniel-mueller 2021-06-16 Build site.
Rmd 366beab jens-daniel-mueller 2021-06-16 export globally integrated scaling factor
html c424d18 jens-daniel-mueller 2021-06-11 Build site.
Rmd a436128 jens-daniel-mueller 2021-06-11 Kx rather Kw for scaling air sea disequilibrium
html 834c523 jens-daniel-mueller 2021-06-09 Build site.
Rmd e904ada jens-daniel-mueller 2021-06-09 derive air sea disequilibrium
html 13659b9 jens-daniel-mueller 2021-06-09 Build site.
Rmd c1bee2f jens-daniel-mueller 2021-06-09 derive air sea disequilibrium
html 0e663e3 jens-daniel-mueller 2021-06-09 Build site.
Rmd 2799a45 jens-daniel-mueller 2021-06-09 derive air sea disequilibrium
html b256c65 jens-daniel-mueller 2021-06-09 Build site.
html 27f932d jens-daniel-mueller 2021-06-08 Build site.
Rmd 4664034 jens-daniel-mueller 2021-06-08 testrun surface ocean data
html fe31dfb jens-daniel-mueller 2021-06-08 Build site.
Rmd bb1bfa9 jens-daniel-mueller 2021-06-08 testrun surface ocean data

path_cmorized <-
  "/nfs/kryo/work/updata/reccap2/Models/2D_CO2/"

path_cmorized_ancillary <-
  "/nfs/kryo/work/updata/reccap2/Models/Ancillary_data/"

path_preprocessing <-
  paste(path_root, "/model/preprocessing/surface_ocean/", sep = "")

1 Select basin mask

# use only three basin to assign general basin mask
# ie this is not specific to the MLR fitting
basinmask <- basinmask %>%
  filter(MLR_basins == "2") %>%
  select(lat, lon, basin_AIP)
models <- list.files(path_cmorized)

models <-
  models[!str_detect(models, pattern = "\\.")]

models <-
  models[str_detect(
    models,
    pattern = c(
      "CESM|CNRM|EC-Earth3|FESOM_REcoM_LR|MOM6-Princeton|MRI-ESM2-0|ORCA025-GEOMAR|ORCA1-LIM3-PISCES"
    )
  )]

# depth named lev, contains only depth levels not actual depth in m
# time not in days since 1980
models <-
  models[!str_detect(models, pattern = "EC-Earth3")]

models <- models[1]

2 Extract surface data

# set name of model to be subsetted
model_IDs <- c("A", "D")

# for loop across variables
variables <-
  c("spco2",
    "fgco2",
    "talkos",
    "dissicos",
    "po4os",
    "sios",
    "sos",
    "tos")

for (i_model in models) {
  # i_model <- models[1]
  print(i_model)
  
  for (i_model_ID in model_IDs) {
    # i_model_ID <- model_IDs[1]
    
    variables_available <-
      list.files(
        path = paste0(path_cmorized, i_model),
        pattern = paste0("_", i_model_ID, "_")
      )
    
    variables_available <-
      str_split(variables_available,
                pattern = "_",
                simplify = TRUE)[, 1]
    variables_available <-
      variables_available[variables_available %in% variables]
    variables_available <- unique(variables_available)
    
    for (i_variable in variables_available) {
      # i_variable <- variables_available[1]
      
      # read list of all files
      file <-
        list.files(
          path = paste0(path_cmorized, i_model),
          pattern = paste0(i_variable, "_")
        )
      
      file <-
        file[str_detect(file, pattern = paste0("_", i_model_ID, "_"))]
      file <- file[!str_detect(file, pattern = "_reg")]
      file <- file[!str_detect(file, pattern = "_glob")]
      
      print(file)
      
      # read in data
      if (i_model %in% c("EC-Earth3_2D_CO2_v20220323")) {
        variable_data <-
          read_ncdf(paste(paste0(path_cmorized, i_model),
                          file,
                          sep = "/"),
                    make_units = FALSE,
                    make_time = FALSE) %>% 
          as_tibble()
        
        variable_data <- variable_data %>% 
          mutate(time = as.Date(time, origin = "1980-01-01"))
          
      } else {
        variable_data <-
          read_ncdf(paste(paste0(path_cmorized, i_model),
                          file,
                          sep = "/"),
                    make_units = FALSE)
        
      }
      
      
      # convert to tibble
      variable_data_tibble <- variable_data %>%
        as_tibble()
      
      # remove open link to nc file
      rm(variable_data)
      
      
      if (i_model == "CESM-ETHZ_2D_CO2_v20211122") {
        variable_data_tibble <- variable_data_tibble %>%
          rename(time = time_mon)
      }
      
      # if (i_model == "CNRM-ESM2-1_3D_ALL_v20211208") {
      #   variable_data_tibble <- variable_data_tibble %>%
      #     rename(depth = lev)
      # }
      #
      # if (i_model == "FESOM_REcoM_LR_3D_all_v20211119") {
      #   variable_data_tibble <- variable_data_tibble %>%
      #     rename(lat = Lat,
      #            lon = Lon,
      #            depth = Depth,
      #            time = Time) %>%
      #     mutate(time = as.Date(time, origin = '1980-01-01'))
      # }
      #
      # if (i_model == "MOM6-Princeton_3D_ALL_v20220125") {
      #   variable_data_tibble <- variable_data_tibble %>%
      #     rename(depth = z_l)
      # }
      #
      # if (i_model == "MRI-ESM2-0_3D_ALL_v20210830") {
      #   variable_data_tibble <- variable_data_tibble %>%
      #     rename(depth = lev)
      # }
      
      # remove na values
      variable_data_tibble <-
        variable_data_tibble %>%
        drop_na()
      
      # harmonize longitudes
      variable_data_tibble <- variable_data_tibble %>%
        mutate(lon = if_else(lon < 20, lon + 360, lon))
      
      # only consider model grids within basinmask
      variable_data_tibble <-
        inner_join(variable_data_tibble, basinmask) %>%
        select(-basin_AIP)
      
      # mutate variables
      variable_data_tibble <- variable_data_tibble %>%
        mutate(year = year(time)) %>%
        select(-time)
      
      
      # calculate annual average variable
      variable_data_tibble_annual_average <-
        variable_data_tibble %>%
        fgroup_by(lat, lon, year) %>% {
          add_vars(fgroup_vars(., "unique"),
                   fmean(., keep.group_vars = FALSE))
        }
      
      # calculate climatology
      variable_data_tibble_climatology <-
        variable_data_tibble_annual_average %>%
        fselect(-year) %>%
        fgroup_by(lat, lon) %>% {
          add_vars(fgroup_vars(., "unique"),
                   fmean(., keep.group_vars = FALSE))
        }

      
      # surface map of variable
      print(
        map +
          geom_raster(data = variable_data_tibble_climatology,
                      aes(lon, lat, fill = !!sym(i_variable))) +
          scale_fill_viridis_c(name = i_variable) +
          labs(title = str_remove(i_model, "2D_CO2_"))
      )
      
      
      # write raw data file for GLODAP-based subsetting model variables
      variable_data_tibble_annual_average %>%
        write_csv(
          file = paste(
            path_preprocessing,
            "surface_ocean_",
            i_model_ID,
            "/",
            str_remove(i_model, "2D_CO2_"),
            "_",
            i_variable,
            ".csv",
            sep = ""
          )
        )
      
      
    }
    
  }
}
[1] "CESM-ETHZ_2D_CO2_v20211122"
[1] "dissicos_CESM-ETHZ_A_1_gr_1980-2018_v20211122.nc"

Version Author Date
06054b2 jens-daniel-mueller 2022-05-10
c424d18 jens-daniel-mueller 2021-06-11
834c523 jens-daniel-mueller 2021-06-09
0e663e3 jens-daniel-mueller 2021-06-09
27f932d jens-daniel-mueller 2021-06-08
[1] "fgco2_CESM-ETHZ_A_1_gr_1980-2018_v20211122.nc"

Version Author Date
06054b2 jens-daniel-mueller 2022-05-10
c424d18 jens-daniel-mueller 2021-06-11
834c523 jens-daniel-mueller 2021-06-09
0e663e3 jens-daniel-mueller 2021-06-09
27f932d jens-daniel-mueller 2021-06-08
[1] "po4os_CESM-ETHZ_A_1_gr_1980-2018_v20211122.nc"

Version Author Date
06054b2 jens-daniel-mueller 2022-05-10
c424d18 jens-daniel-mueller 2021-06-11
834c523 jens-daniel-mueller 2021-06-09
0e663e3 jens-daniel-mueller 2021-06-09
27f932d jens-daniel-mueller 2021-06-08
[1] "sios_CESM-ETHZ_A_1_gr_1980-2018_v20211122.nc"

Version Author Date
06054b2 jens-daniel-mueller 2022-05-10
c424d18 jens-daniel-mueller 2021-06-11
834c523 jens-daniel-mueller 2021-06-09
0e663e3 jens-daniel-mueller 2021-06-09
27f932d jens-daniel-mueller 2021-06-08
[1] "sos_CESM-ETHZ_A_1_gr_1980-2018_v20211122.nc"

Version Author Date
06054b2 jens-daniel-mueller 2022-05-10
c424d18 jens-daniel-mueller 2021-06-11
834c523 jens-daniel-mueller 2021-06-09
0e663e3 jens-daniel-mueller 2021-06-09
27f932d jens-daniel-mueller 2021-06-08
[1] "spco2_CESM-ETHZ_A_1_gr_1980-2018_v20211122.nc"

Version Author Date
06054b2 jens-daniel-mueller 2022-05-10
c424d18 jens-daniel-mueller 2021-06-11
834c523 jens-daniel-mueller 2021-06-09
0e663e3 jens-daniel-mueller 2021-06-09
27f932d jens-daniel-mueller 2021-06-08
[1] "talkos_CESM-ETHZ_A_1_gr_1980-2018_v20211122.nc"

Version Author Date
06054b2 jens-daniel-mueller 2022-05-10
c424d18 jens-daniel-mueller 2021-06-11
834c523 jens-daniel-mueller 2021-06-09
0e663e3 jens-daniel-mueller 2021-06-09
27f932d jens-daniel-mueller 2021-06-08
[1] "tos_CESM-ETHZ_A_1_gr_1980-2018_v20211122.nc"

Version Author Date
06054b2 jens-daniel-mueller 2022-05-10
c424d18 jens-daniel-mueller 2021-06-11
834c523 jens-daniel-mueller 2021-06-09
0e663e3 jens-daniel-mueller 2021-06-09
27f932d jens-daniel-mueller 2021-06-08
[1] "dissicos_CESM-ETHZ_D_1_gr_1980-2018_v20211122.nc"

Version Author Date
06054b2 jens-daniel-mueller 2022-05-10
c424d18 jens-daniel-mueller 2021-06-11
834c523 jens-daniel-mueller 2021-06-09
0e663e3 jens-daniel-mueller 2021-06-09
27f932d jens-daniel-mueller 2021-06-08
[1] "fgco2_CESM-ETHZ_D_1_gr_1980-2018_v20211122.nc"

Version Author Date
06054b2 jens-daniel-mueller 2022-05-10
c424d18 jens-daniel-mueller 2021-06-11
834c523 jens-daniel-mueller 2021-06-09
0e663e3 jens-daniel-mueller 2021-06-09
27f932d jens-daniel-mueller 2021-06-08
[1] "po4os_CESM-ETHZ_D_1_gr_1980-2018_v20211122.nc"

Version Author Date
06054b2 jens-daniel-mueller 2022-05-10
c424d18 jens-daniel-mueller 2021-06-11
834c523 jens-daniel-mueller 2021-06-09
0e663e3 jens-daniel-mueller 2021-06-09
27f932d jens-daniel-mueller 2021-06-08
[1] "sios_CESM-ETHZ_D_1_gr_1980-2018_v20211122.nc"

Version Author Date
06054b2 jens-daniel-mueller 2022-05-10
c424d18 jens-daniel-mueller 2021-06-11
834c523 jens-daniel-mueller 2021-06-09
0e663e3 jens-daniel-mueller 2021-06-09
27f932d jens-daniel-mueller 2021-06-08
[1] "sos_CESM-ETHZ_D_1_gr_1980-2018_v20211122.nc"

Version Author Date
06054b2 jens-daniel-mueller 2022-05-10
c424d18 jens-daniel-mueller 2021-06-11
834c523 jens-daniel-mueller 2021-06-09
0e663e3 jens-daniel-mueller 2021-06-09
27f932d jens-daniel-mueller 2021-06-08
[1] "spco2_CESM-ETHZ_D_1_gr_1980-2018_v20211122.nc"

Version Author Date
06054b2 jens-daniel-mueller 2022-05-10
c424d18 jens-daniel-mueller 2021-06-11
834c523 jens-daniel-mueller 2021-06-09
0e663e3 jens-daniel-mueller 2021-06-09
27f932d jens-daniel-mueller 2021-06-08
[1] "talkos_CESM-ETHZ_D_1_gr_1980-2018_v20211122.nc"

Version Author Date
06054b2 jens-daniel-mueller 2022-05-10
c424d18 jens-daniel-mueller 2021-06-11
834c523 jens-daniel-mueller 2021-06-09
0e663e3 jens-daniel-mueller 2021-06-09
27f932d jens-daniel-mueller 2021-06-08
[1] "tos_CESM-ETHZ_D_1_gr_1980-2018_v20211122.nc"

Version Author Date
06054b2 jens-daniel-mueller 2022-05-10
c424d18 jens-daniel-mueller 2021-06-11
834c523 jens-daniel-mueller 2021-06-09
0e663e3 jens-daniel-mueller 2021-06-09
27f932d jens-daniel-mueller 2021-06-08

3 Air-sea disequilibrium

# set name of model to be subsetted
model_IDs <- c("A", "B", "C", "D")

file <- paste("area",
              "_CESM-ETHZ_",
              "1_gr_v20211122.nc",
              sep = "")

area_grid <-
  variable_data <-
  read_ncdf(paste(path_cmorized_ancillary,
                  file,
                  sep = ""),
            make_units = FALSE) %>% 
  as_tibble()

area_grid <- area_grid %>%
  mutate(lon = if_else(lon < 20, lon + 360, lon))

# for loop across variables
variables <-
  c("spco2",
    "Kw",
    "pco2atm",
    "alpha",
    "fice")

for (i_model_ID in model_IDs) {
  # i_model_ID <- model_IDs[1]
  
  for (i_variable in variables) {
    # i_variable <- variables[5]
    
    # read list of all files
    file <- paste(i_variable,
                  "_CESM-ETHZ_",
                  i_model_ID,
                  "_1_gr_1980-2018_v20211122.nc",
                  sep = "")
    print(file)

    # read in data
    variable_data <-
      read_ncdf(paste(path_cmorized,
                      file,
                      sep = ""),
                make_units = FALSE)
    
    # convert to tibble
    variable_data_tibble <- variable_data %>%
      as_tibble()
    
    # remove open link to nc file
    rm(variable_data)
    
    # remove na values
    variable_data_tibble <-
      variable_data_tibble %>%
      drop_na()
    
    # harmonize longitudes
    variable_data_tibble <- variable_data_tibble %>%
      mutate(lon = if_else(lon < 20, lon + 360, lon))
    
    # only consider model grids within basinmask
    variable_data_tibble <-
      inner_join(variable_data_tibble, basinmask) %>%
      select(-basin_AIP)
    
    if (exists("all_variables")) {
      all_variables <- inner_join(all_variables, variable_data_tibble)
    }
    
    if (!exists("all_variables")) {
      all_variables <- variable_data_tibble
    }
    
    
  }
  
  all_variables <- inner_join(all_variables,
                              area_grid)
  
  mol_to_g <- 12
  P <- 1e-15
  m3_to_kg <- 1030
  sec_to_yr <- 60*60*24*365

  unit_conversion_to_PgCyr <- mol_to_g * P * sec_to_yr / m3_to_kg

  all_variables <- all_variables %>%
    mutate(delta_pco2 = spco2 - pco2atm,
           scale = area * Kw * alpha * (1-fice),
           fgco2 = delta_pco2 * scale)
  
  delta_pco2_monthly <- all_variables %>%
    group_by(time_mon) %>%
    summarise(
      scaling_glob = sum(scale),
      fgco2_glob = sum(fgco2),
      delta_pco2_glob = fgco2_glob / scaling_glob
    ) %>%
    ungroup() %>% 
    mutate(fgco2_glob = fgco2_glob * unit_conversion_to_PgCyr)
  
  delta_pco2_annual <- delta_pco2_monthly %>%
    mutate(year = year(time_mon)) %>%
    group_by(year) %>%
    summarise(
      scaling_glob = mean(scaling_glob),
      fgco2_glob = mean(fgco2_glob),
      delta_pco2_glob = mean(delta_pco2_glob)
    ) %>%
    ungroup()
  
  print(
  ggplot() +
    geom_path(data = delta_pco2_monthly,
              aes(decimal_date(time_mon), delta_pco2_glob, col = "monthly")) +
    geom_path(data = delta_pco2_annual,
              aes(year, delta_pco2_glob, col = "annual")) +
    scale_color_brewer(palette = "Set1", name = "Average") +
    labs(title = paste("model_id:",i_model_ID),
         x = "year")
  )
  
  print(
  ggplot() +
    geom_path(data = delta_pco2_monthly,
              aes(decimal_date(time_mon), fgco2_glob, col = "monthly")) +
    geom_path(data = delta_pco2_annual,
              aes(year, fgco2_glob, col = "annual")) +
    scale_color_brewer(palette = "Set1", name = "Average") +
    labs(title = paste("model_id:",i_model_ID),
         x = "year")
  )
  
  print(
    ggplot() +
      geom_path(
        data = delta_pco2_annual,
        aes(
          year,
          scaling_glob * unit_conversion_to_PgCyr
        )
      )
  )
  
  print(
    ggplot() +
      geom_path(
        data = delta_pco2_annual,
        aes(
          year,
          scaling_glob * delta_pco2_glob * unit_conversion_to_PgCyr,
          col = "scaled"
        )
      ) +
      geom_path(
        data = delta_pco2_annual,
        aes(year, fgco2_glob, col = "integrated")
      ) +
      scale_color_brewer(palette = "Set1", name = "Estimate") +
      scale_y_continuous(name = "Air-sea flux [PgC yr-1]") +
      labs(title = paste("model_id:", i_model_ID),
           x = "year")
  )
  
  # write raw data file for GLODAP-based subsetting model variables
  delta_pco2_annual %>%
    select(-c(scaling_glob, fgco2_glob)) %>% 
    write_csv(
      file = paste(
        path_preprocessing,
        "surface_ocean_disequilibrium/",
        i_model_ID,
        "_annual.csv",
        sep = ""
      )
    )
  
  rm(i_variable, all_variables, delta_pco2_annual, delta_pco2_monthly)
  
}

sessionInfo()
R version 4.1.2 (2021-11-01)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: openSUSE Leap 15.3

Matrix products: default
BLAS:   /usr/local/R-4.1.2/lib64/R/lib/libRblas.so
LAPACK: /usr/local/R-4.1.2/lib64/R/lib/libRlapack.so

locale:
 [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
 [3] LC_TIME=en_US.UTF-8        LC_COLLATE=en_US.UTF-8    
 [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
 [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
 [9] LC_ADDRESS=C               LC_TELEPHONE=C            
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
 [1] reticulate_1.23   oce_1.5-0         gsw_1.0-6         rqdatatable_1.3.0
 [5] rquery_1.4.7      wrapr_2.0.8       lubridate_1.8.0   stars_0.5-5      
 [9] sf_1.0-5          abind_1.4-5       colorspace_2.0-2  marelac_2.1.10   
[13] shape_1.4.6       ggforce_0.3.3     metR_0.11.0       scico_1.3.0      
[17] patchwork_1.1.1   collapse_1.7.0    forcats_0.5.1     stringr_1.4.0    
[21] dplyr_1.0.7       purrr_0.3.4       readr_2.1.1       tidyr_1.1.4      
[25] tibble_3.1.6      ggplot2_3.3.5     tidyverse_1.3.1   workflowr_1.7.0  

loaded via a namespace (and not attached):
 [1] ellipsis_0.3.2     class_7.3-20       rprojroot_2.0.2    fs_1.5.2          
 [5] rstudioapi_0.13    proxy_0.4-26       farver_2.1.0       bit64_4.0.5       
 [9] fansi_1.0.2        xml2_1.3.3         knitr_1.37         polyclip_1.10-0   
[13] jsonlite_1.7.3     broom_0.7.11       dbplyr_2.1.1       png_0.1-7         
[17] compiler_4.1.2     httr_1.4.2         backports_1.4.1    assertthat_0.2.1  
[21] Matrix_1.4-0       fastmap_1.1.0      cli_3.1.1          later_1.3.0       
[25] tweenr_1.0.2       htmltools_0.5.2    tools_4.1.2        gtable_0.3.0      
[29] glue_1.6.0         Rcpp_1.0.8         cellranger_1.1.0   jquerylib_0.1.4   
[33] RNetCDF_2.5-2      vctrs_0.3.8        lwgeom_0.2-8       xfun_0.29         
[37] ps_1.6.0           rvest_1.0.2        lifecycle_1.0.1    ncmeta_0.3.0      
[41] getPass_0.2-2      MASS_7.3-55        scales_1.1.1       vroom_1.5.7       
[45] hms_1.1.1          promises_1.2.0.1   parallel_4.1.2     yaml_2.2.1        
[49] sass_0.4.0         stringi_1.7.6      highr_0.9          e1071_1.7-9       
[53] checkmate_2.0.0    rlang_1.0.2        pkgconfig_2.0.3    evaluate_0.14     
[57] lattice_0.20-45    SolveSAPHE_2.1.0   labeling_0.4.2     bit_4.0.4         
[61] processx_3.5.2     tidyselect_1.1.1   seacarb_3.3.0      magrittr_2.0.1    
[65] R6_2.5.1           generics_0.1.1     DBI_1.1.2          pillar_1.6.4      
[69] haven_2.4.3        whisker_0.4        withr_2.4.3        units_0.7-2       
[73] modelr_0.1.8       crayon_1.4.2       KernSmooth_2.23-20 utf8_1.2.2        
[77] tzdb_0.2.0         rmarkdown_2.11     grid_4.1.2         readxl_1.3.1      
[81] data.table_1.14.2  callr_3.7.0        git2r_0.29.0       reprex_2.0.1      
[85] digest_0.6.29      classInt_0.4-3     httpuv_1.6.5       munsell_0.5.0     
[89] viridisLite_0.4.0  bslib_0.3.1