From 0f3f928410b664c2578eda1956211218a3fb17b5 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Wed, 16 Oct 2024 16:28:40 +0000 Subject: [PATCH] markdown source builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Auto-generated via `{sandpaper}` Source : cdd2fd650d7aeacd065b6e28c1b29af57c910603 Branch : main Author : Nelly Sélem Time : 2024-10-16 16:26:17 +0000 Message : Merge pull request #166 from swcarpentry/update/packages Update 10 packages --- 01-rstudio-intro.md | 4 +- 02-project-intro.md | 2 +- 03-seeking-help.md | 6 +- 05-data-structures-part2.md | 12 +- 07-control-flow.md | 4 +- config.yaml | 96 ---- md5sum.txt | 54 +- renv.lock | 1044 ----------------------------------- 8 files changed, 41 insertions(+), 1181 deletions(-) delete mode 100644 config.yaml delete mode 100644 renv.lock diff --git a/01-rstudio-intro.md b/01-rstudio-intro.md index a083ac2d..02365eb0 100644 --- a/01-rstudio-intro.md +++ b/01-rstudio-intro.md @@ -521,7 +521,7 @@ ls() ``` ``` output -[1] "x" "y" +[1] "object" "x" "y" ``` ::::::::::::::::::::::::::::::::::::::::: callout @@ -575,7 +575,7 @@ function (name, pos = -1L, envir = as.environment(pos), all.names = FALSE, } else all.names } - + ``` diff --git a/02-project-intro.md b/02-project-intro.md index ba965cb1..9b007362 100644 --- a/02-project-intro.md +++ b/02-project-intro.md @@ -210,7 +210,7 @@ ls -lh data/gapminder-FiveYearData.csv ``` ``` output --rw-r--r-- 1 runner docker 80K Sep 5 16:12 data/gapminder-FiveYearData.csv +-rw-r--r-- 1 runner docker 80K Oct 16 16:27 data/gapminder-FiveYearData.csv ``` El tamaño del archivo es 80K. diff --git a/03-seeking-help.md b/03-seeking-help.md index 5878aa8e..ebc0be7d 100644 --- a/03-seeking-help.md +++ b/03-seeking-help.md @@ -132,7 +132,7 @@ sessionInfo() ``` output R version 4.4.1 (2024-06-14) Platform: x86_64-pc-linux-gnu -Running under: Ubuntu 22.04.4 LTS +Running under: Ubuntu 22.04.5 LTS Matrix products: default BLAS: /usr/lib/x86_64-linux-gnu/blas/libblas.so.3.10.0 @@ -151,8 +151,8 @@ attached base packages: [1] stats graphics grDevices utils datasets methods base loaded via a namespace (and not attached): -[1] compiler_4.4.1 tools_4.4.1 yaml_2.3.10 knitr_1.48 -[5] xfun_0.47 renv_1.0.7 evaluate_0.24.0 +[1] compiler_4.4.1 tools_4.4.1 yaml_2.3.10 knitr_1.48 xfun_0.47 +[6] renv_1.0.11 evaluate_1.0.0 ``` Imprimirá tu versión actual de R, así como cualquier paquete que hayas diff --git a/05-data-structures-part2.md b/05-data-structures-part2.md index 72d92fd6..10ec8de7 100644 --- a/05-data-structures-part2.md +++ b/05-data-structures-part2.md @@ -657,12 +657,12 @@ gapminder[sample(nrow(gapminder), 5), ] ``` ``` output - country year pop continent lifeExp gdpPercap -1090 Netherlands 1997 15604464 Europe 78.030 30246.131 -672 Hong Kong China 2007 6980412 Asia 82.208 39724.979 -1392 Slovenia 2007 2009245 Europe 77.926 25768.258 -1131 Nigeria 1962 41871351 Africa 39.360 1150.927 -1129 Nigeria 1952 33119096 Africa 36.324 1077.282 + country year pop continent lifeExp gdpPercap +209 Burundi 1972 3529983 Africa 44.057 464.0995 +172 Brazil 1967 88049823 Americas 57.632 3429.8644 +8 Afghanistan 1987 13867957 Asia 40.822 852.3959 +1139 Nigeria 2002 119901274 Africa 46.608 1615.2864 +499 Eritrea 1982 2637297 Africa 43.890 524.8758 ``` ::::::::::::::::::::::::: diff --git a/07-control-flow.md b/07-control-flow.md index 94fd1edb..95a08fbb 100644 --- a/07-control-flow.md +++ b/07-control-flow.md @@ -185,7 +185,7 @@ if(any(gapminder$year == 2002)){ ``` error -Error in eval(expr, envir, enclos): object 'gapminder' not found +Error: object 'gapminder' not found ``` Si tu condición se evalúa como un vector con más de un elemento lógico, @@ -551,7 +551,7 @@ for( iCountry in unique(gapminder$country) ){ ``` ``` error -Error in eval(expr, envir, enclos): object 'gapminder' not found +Error: object 'gapminder' not found ``` ::::::::::::::::::::::::: diff --git a/config.yaml b/config.yaml deleted file mode 100644 index a14156dd..00000000 --- a/config.yaml +++ /dev/null @@ -1,96 +0,0 @@ -#------------------------------------------------------------ -# Values for this lesson. -#------------------------------------------------------------ - -# Which carpentry is this (swc, dc, lc, or cp)? -# swc: Software Carpentry -# dc: Data Carpentry -# lc: Library Carpentry -# cp: Carpentries (to use for instructor training for instance) -# incubator: The Carpentries Incubator -carpentry: 'swc' - -# Overall title for pages. -title: 'R para Análisis Científicos Reproducibles' - -# Date the lesson was created (YYYY-MM-DD, this is empty by default) -created: '2018-03-20' - -# Comma-separated list of keywords for the lesson -keywords: 'software, data, lesson, The Carpentries' - -# Life cycle stage of the lesson -# possible values: pre-alpha, alpha, beta, stable -life_cycle: 'stable' - -# License of the lesson materials (recommended CC-BY 4.0) -license: 'CC-BY 4.0' - -# Link to the source repository for this lesson -source: 'https://github.com/swcarpentry/r-novice-gapminder-es' - -# Default branch of your lesson -branch: 'main' - -# Who to contact if there are any issues -contact: 'team@carpentries.org' - -# Navigation ------------------------------------------------ -# -# Use the following menu items to specify the order of -# individual pages in each dropdown section. Leave blank to -# include all pages in the folder. -# -# Example ------------- -# -# episodes: -# - introduction.md -# - first-steps.md -# -# learners: -# - setup.md -# -# instructors: -# - instructor-notes.md -# -# profiles: -# - one-learner.md -# - another-learner.md - -# Order of episodes in your lesson -episodes: -- 01-rstudio-intro.Rmd -- 02-project-intro.Rmd -- 03-seeking-help.Rmd -- 04-data-structures-part1.Rmd -- 05-data-structures-part2.Rmd -- 06-data-subsetting.Rmd -- 07-control-flow.Rmd -- 08-plot-ggplot2.Rmd -- 09-vectorization.Rmd -- 10-functions.Rmd -- 11-writing-data.Rmd -- 12-plyr.Rmd -- 13-dplyr.Rmd -- 14-tidyr.Rmd -- 15-knitr-markdown.Rmd -- 16-wrap-up.Rmd - -# Information for Learners -learners: - -# Information for Instructors -instructors: - -# Learner Profiles -profiles: - -# Customisation --------------------------------------------- -# -# This space below is where custom yaml items (e.g. pinning -# sandpaper and varnish versions) should live - - -url: 'https://swcarpentry.github.io/r-novice-gapminder-es' -analytics: carpentries -lang: 'es' diff --git a/md5sum.txt b/md5sum.txt index c49bb4d0..4197c10e 100644 --- a/md5sum.txt +++ b/md5sum.txt @@ -1,28 +1,28 @@ "file" "checksum" "built" "date" -"CODE_OF_CONDUCT.md" "c93c83c630db2fe2462240bf72552548" "site/built/CODE_OF_CONDUCT.md" "2024-09-05" -"LICENSE.md" "b24ebbb41b14ca25cf6b8216dda83e5f" "site/built/LICENSE.md" "2024-09-05" -"NEWS.md" "5f095ea326686e040515b3a4083dac0c" "site/built/NEWS.md" "2024-09-05" -"config.yaml" "6937e343b4e3568a3bba5f2625125296" "site/built/config.yaml" "2024-09-05" -"index.md" "ebed87c856179ccf6edc852ade633afe" "site/built/index.md" "2024-09-05" -"episodes/01-rstudio-intro.Rmd" "df5a9cad0039f566bfc718b5f7c4a380" "site/built/01-rstudio-intro.md" "2024-09-05" -"episodes/02-project-intro.Rmd" "b2f3b759b833eb8627ef4119c8051967" "site/built/02-project-intro.md" "2024-09-05" -"episodes/03-seeking-help.Rmd" "f4deeccd811d73e36fea077fbb9c4032" "site/built/03-seeking-help.md" "2024-09-05" -"episodes/04-data-structures-part1.Rmd" "b6d6bc3443c6cdf89979a7365204574b" "site/built/04-data-structures-part1.md" "2024-09-05" -"episodes/05-data-structures-part2.Rmd" "da58cc64c0e5abcd959e9f0658f085e1" "site/built/05-data-structures-part2.md" "2024-09-05" -"episodes/06-data-subsetting.Rmd" "c67848164213c376b967f16a8a05f7d5" "site/built/06-data-subsetting.md" "2024-09-05" -"episodes/07-control-flow.Rmd" "c61eb1b5dce6e7ac620653e1b0b66ee9" "site/built/07-control-flow.md" "2024-09-05" -"episodes/08-plot-ggplot2.Rmd" "c404c7c88a8ff8f42987ca72f4a2a586" "site/built/08-plot-ggplot2.md" "2024-09-05" -"episodes/09-vectorization.Rmd" "9e8cc20afc79d243189bd9a19a54e174" "site/built/09-vectorization.md" "2024-09-05" -"episodes/10-functions.Rmd" "3c24c68a1c2a6f92b6c118c77b4bb23e" "site/built/10-functions.md" "2024-09-05" -"episodes/11-writing-data.Rmd" "f42fe99984f6768838eeb49d1bd518d9" "site/built/11-writing-data.md" "2024-09-05" -"episodes/12-plyr.Rmd" "a2aa9bef9e4e16f3ba3f277565aaf76a" "site/built/12-plyr.md" "2024-09-05" -"episodes/13-dplyr.Rmd" "fca99660f5859ef49493177aa0bc69de" "site/built/13-dplyr.md" "2024-09-05" -"episodes/14-tidyr.Rmd" "8861bff8f34f2054b75a1daef3cdcc39" "site/built/14-tidyr.md" "2024-09-05" -"episodes/15-knitr-markdown.Rmd" "e19009b2aedaaee3a6000f1ae81e6ecc" "site/built/15-knitr-markdown.md" "2024-09-05" -"episodes/16-wrap-up.Rmd" "f6f1d90a11b7c4b7a61813a1d678ba14" "site/built/16-wrap-up.md" "2024-09-05" -"instructors/instructor-notes.md" "3d04325668f1c897df5a0b46d5ac5a53" "site/built/instructor-notes.md" "2024-09-05" -"learners/discuss.md" "42ad66ab1907e030914dbb2a94376a47" "site/built/discuss.md" "2024-09-05" -"learners/reference.md" "c91dec1b149883b985376c211c6eba3e" "site/built/reference.md" "2024-09-05" -"learners/setup.md" "617894179d03d28c84916feeb439d542" "site/built/setup.md" "2024-09-05" -"profiles/learner-profiles.md" "60b93493cf1da06dfd63255d73854461" "site/built/learner-profiles.md" "2024-09-05" -"renv/profiles/lesson-requirements/renv.lock" "5bf473d03565d5753cb65bd2c35bcd52" "site/built/renv.lock" "2024-09-05" +"CODE_OF_CONDUCT.md" "c93c83c630db2fe2462240bf72552548" "site/built/CODE_OF_CONDUCT.md" "2024-10-16" +"LICENSE.md" "b24ebbb41b14ca25cf6b8216dda83e5f" "site/built/LICENSE.md" "2024-10-16" +"NEWS.md" "5f095ea326686e040515b3a4083dac0c" "site/built/NEWS.md" "2024-10-16" +"config.yaml" "6937e343b4e3568a3bba5f2625125296" "site/built/config.yaml" "2024-10-16" +"index.md" "ebed87c856179ccf6edc852ade633afe" "site/built/index.md" "2024-10-16" +"episodes/01-rstudio-intro.Rmd" "df5a9cad0039f566bfc718b5f7c4a380" "site/built/01-rstudio-intro.md" "2024-10-16" +"episodes/02-project-intro.Rmd" "b2f3b759b833eb8627ef4119c8051967" "site/built/02-project-intro.md" "2024-10-16" +"episodes/03-seeking-help.Rmd" "f4deeccd811d73e36fea077fbb9c4032" "site/built/03-seeking-help.md" "2024-10-16" +"episodes/04-data-structures-part1.Rmd" "b6d6bc3443c6cdf89979a7365204574b" "site/built/04-data-structures-part1.md" "2024-10-16" +"episodes/05-data-structures-part2.Rmd" "da58cc64c0e5abcd959e9f0658f085e1" "site/built/05-data-structures-part2.md" "2024-10-16" +"episodes/06-data-subsetting.Rmd" "c67848164213c376b967f16a8a05f7d5" "site/built/06-data-subsetting.md" "2024-10-16" +"episodes/07-control-flow.Rmd" "c61eb1b5dce6e7ac620653e1b0b66ee9" "site/built/07-control-flow.md" "2024-10-16" +"episodes/08-plot-ggplot2.Rmd" "c404c7c88a8ff8f42987ca72f4a2a586" "site/built/08-plot-ggplot2.md" "2024-10-16" +"episodes/09-vectorization.Rmd" "9e8cc20afc79d243189bd9a19a54e174" "site/built/09-vectorization.md" "2024-10-16" +"episodes/10-functions.Rmd" "3c24c68a1c2a6f92b6c118c77b4bb23e" "site/built/10-functions.md" "2024-10-16" +"episodes/11-writing-data.Rmd" "f42fe99984f6768838eeb49d1bd518d9" "site/built/11-writing-data.md" "2024-10-16" +"episodes/12-plyr.Rmd" "a2aa9bef9e4e16f3ba3f277565aaf76a" "site/built/12-plyr.md" "2024-10-16" +"episodes/13-dplyr.Rmd" "fca99660f5859ef49493177aa0bc69de" "site/built/13-dplyr.md" "2024-10-16" +"episodes/14-tidyr.Rmd" "8861bff8f34f2054b75a1daef3cdcc39" "site/built/14-tidyr.md" "2024-10-16" +"episodes/15-knitr-markdown.Rmd" "e19009b2aedaaee3a6000f1ae81e6ecc" "site/built/15-knitr-markdown.md" "2024-10-16" +"episodes/16-wrap-up.Rmd" "f6f1d90a11b7c4b7a61813a1d678ba14" "site/built/16-wrap-up.md" "2024-10-16" +"instructors/instructor-notes.md" "3d04325668f1c897df5a0b46d5ac5a53" "site/built/instructor-notes.md" "2024-10-16" +"learners/discuss.md" "42ad66ab1907e030914dbb2a94376a47" "site/built/discuss.md" "2024-10-16" +"learners/reference.md" "c91dec1b149883b985376c211c6eba3e" "site/built/reference.md" "2024-10-16" +"learners/setup.md" "617894179d03d28c84916feeb439d542" "site/built/setup.md" "2024-10-16" +"profiles/learner-profiles.md" "60b93493cf1da06dfd63255d73854461" "site/built/learner-profiles.md" "2024-10-16" +"renv/profiles/lesson-requirements/renv.lock" "ba19034e3aac542487a0c6c5ff5b45ad" "site/built/renv.lock" "2024-10-16" diff --git a/renv.lock b/renv.lock deleted file mode 100644 index 33545a48..00000000 --- a/renv.lock +++ /dev/null @@ -1,1044 +0,0 @@ -{ - "R": { - "Version": "4.4.1", - "Repositories": [ - { - "Name": "carpentries", - "URL": "https://carpentries.r-universe.dev" - }, - { - "Name": "carpentries_archive", - "URL": "https://carpentries.github.io/drat" - }, - { - "Name": "CRAN", - "URL": "https://cran.rstudio.com" - } - ] - }, - "Packages": { - "DiagrammeR": { - "Package": "DiagrammeR", - "Version": "1.0.11", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "RColorBrewer", - "cli", - "dplyr", - "glue", - "htmltools", - "htmlwidgets", - "igraph", - "magrittr", - "purrr", - "readr", - "rlang", - "rstudioapi", - "scales", - "stringr", - "tibble", - "tidyr", - "viridisLite", - "visNetwork" - ], - "Hash": "584c1e1cbb6f9b6c3b0f4ef0ad960966" - }, - "MASS": { - "Package": "MASS", - "Version": "7.3-61", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "grDevices", - "graphics", - "methods", - "stats", - "utils" - ], - "Hash": "0cafd6f0500e5deba33be22c46bf6055" - }, - "Matrix": { - "Package": "Matrix", - "Version": "1.7-0", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "grDevices", - "graphics", - "grid", - "lattice", - "methods", - "stats", - "utils" - ], - "Hash": "1920b2f11133b12350024297d8a4ff4a" - }, - "R6": { - "Package": "R6", - "Version": "2.5.1", - "Source": "Repository", - "Repository": "RSPM", - "Requirements": [ - "R" - ], - "Hash": "470851b6d5d0ac559e9d01bb352b4021" - }, - "RColorBrewer": { - "Package": "RColorBrewer", - "Version": "1.1-3", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R" - ], - "Hash": "45f0398006e83a5b10b72a90663d8d8c" - }, - "Rcpp": { - "Package": "Rcpp", - "Version": "1.0.13", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "methods", - "utils" - ], - "Hash": "f27411eb6d9c3dada5edd444b8416675" - }, - "base64enc": { - "Package": "base64enc", - "Version": "0.1-3", - "Source": "Repository", - "Repository": "RSPM", - "Requirements": [ - "R" - ], - "Hash": "543776ae6848fde2f48ff3816d0628bc" - }, - "bit": { - "Package": "bit", - "Version": "4.0.5", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R" - ], - "Hash": "d242abec29412ce988848d0294b208fd" - }, - "bit64": { - "Package": "bit64", - "Version": "4.0.5", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "bit", - "methods", - "stats", - "utils" - ], - "Hash": "9fe98599ca456d6552421db0d6772d8f" - }, - "bslib": { - "Package": "bslib", - "Version": "0.8.0", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "base64enc", - "cachem", - "fastmap", - "grDevices", - "htmltools", - "jquerylib", - "jsonlite", - "lifecycle", - "memoise", - "mime", - "rlang", - "sass" - ], - "Hash": "b299c6741ca9746fb227debcb0f9fb6c" - }, - "cachem": { - "Package": "cachem", - "Version": "1.1.0", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "fastmap", - "rlang" - ], - "Hash": "cd9a672193789068eb5a2aad65a0dedf" - }, - "cli": { - "Package": "cli", - "Version": "3.6.3", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "utils" - ], - "Hash": "b21916dd77a27642b447374a5d30ecf3" - }, - "clipr": { - "Package": "clipr", - "Version": "0.8.0", - "Source": "Repository", - "Repository": "RSPM", - "Requirements": [ - "utils" - ], - "Hash": "3f038e5ac7f41d4ac41ce658c85e3042" - }, - "colorspace": { - "Package": "colorspace", - "Version": "2.1-1", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "grDevices", - "graphics", - "methods", - "stats" - ], - "Hash": "d954cb1c57e8d8b756165d7ba18aa55a" - }, - "cpp11": { - "Package": "cpp11", - "Version": "0.5.0", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R" - ], - "Hash": "91570bba75d0c9d3f1040c835cee8fba" - }, - "crayon": { - "Package": "crayon", - "Version": "1.5.3", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "grDevices", - "methods", - "utils" - ], - "Hash": "859d96e65ef198fd43e82b9628d593ef" - }, - "digest": { - "Package": "digest", - "Version": "0.6.37", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "utils" - ], - "Hash": "33698c4b3127fc9f506654607fb73676" - }, - "dplyr": { - "Package": "dplyr", - "Version": "1.1.4", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "R6", - "cli", - "generics", - "glue", - "lifecycle", - "magrittr", - "methods", - "pillar", - "rlang", - "tibble", - "tidyselect", - "utils", - "vctrs" - ], - "Hash": "fedd9d00c2944ff00a0e2696ccf048ec" - }, - "evaluate": { - "Package": "evaluate", - "Version": "0.24.0", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "methods" - ], - "Hash": "a1066cbc05caee9a4bf6d90f194ff4da" - }, - "fansi": { - "Package": "fansi", - "Version": "1.0.6", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "grDevices", - "utils" - ], - "Hash": "962174cf2aeb5b9eea581522286a911f" - }, - "farver": { - "Package": "farver", - "Version": "2.1.2", - "Source": "Repository", - "Repository": "CRAN", - "Hash": "680887028577f3fa2a81e410ed0d6e42" - }, - "fastmap": { - "Package": "fastmap", - "Version": "1.2.0", - "Source": "Repository", - "Repository": "CRAN", - "Hash": "aa5e1cd11c2d15497494c5292d7ffcc8" - }, - "fontawesome": { - "Package": "fontawesome", - "Version": "0.5.2", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "htmltools", - "rlang" - ], - "Hash": "c2efdd5f0bcd1ea861c2d4e2a883a67d" - }, - "fs": { - "Package": "fs", - "Version": "1.6.4", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "methods" - ], - "Hash": "15aeb8c27f5ea5161f9f6a641fafd93a" - }, - "generics": { - "Package": "generics", - "Version": "0.1.3", - "Source": "Repository", - "Repository": "RSPM", - "Requirements": [ - "R", - "methods" - ], - "Hash": "15e9634c0fcd294799e9b2e929ed1b86" - }, - "ggplot2": { - "Package": "ggplot2", - "Version": "3.5.1", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "MASS", - "R", - "cli", - "glue", - "grDevices", - "grid", - "gtable", - "isoband", - "lifecycle", - "mgcv", - "rlang", - "scales", - "stats", - "tibble", - "vctrs", - "withr" - ], - "Hash": "44c6a2f8202d5b7e878ea274b1092426" - }, - "glue": { - "Package": "glue", - "Version": "1.7.0", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "methods" - ], - "Hash": "e0b3a53876554bd45879e596cdb10a52" - }, - "gtable": { - "Package": "gtable", - "Version": "0.3.5", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "cli", - "glue", - "grid", - "lifecycle", - "rlang" - ], - "Hash": "e18861963cbc65a27736e02b3cd3c4a0" - }, - "highr": { - "Package": "highr", - "Version": "0.11", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "xfun" - ], - "Hash": "d65ba49117ca223614f71b60d85b8ab7" - }, - "hms": { - "Package": "hms", - "Version": "1.1.3", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "lifecycle", - "methods", - "pkgconfig", - "rlang", - "vctrs" - ], - "Hash": "b59377caa7ed00fa41808342002138f9" - }, - "htmltools": { - "Package": "htmltools", - "Version": "0.5.8.1", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "base64enc", - "digest", - "fastmap", - "grDevices", - "rlang", - "utils" - ], - "Hash": "81d371a9cc60640e74e4ab6ac46dcedc" - }, - "htmlwidgets": { - "Package": "htmlwidgets", - "Version": "1.6.4", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "grDevices", - "htmltools", - "jsonlite", - "knitr", - "rmarkdown", - "yaml" - ], - "Hash": "04291cc45198225444a397606810ac37" - }, - "igraph": { - "Package": "igraph", - "Version": "2.0.3", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "Matrix", - "R", - "cli", - "cpp11", - "grDevices", - "graphics", - "lifecycle", - "magrittr", - "methods", - "pkgconfig", - "rlang", - "stats", - "utils", - "vctrs" - ], - "Hash": "c3b7d801d722e26e4cd888e042bf9af5" - }, - "isoband": { - "Package": "isoband", - "Version": "0.2.7", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "grid", - "utils" - ], - "Hash": "0080607b4a1a7b28979aecef976d8bc2" - }, - "jquerylib": { - "Package": "jquerylib", - "Version": "0.1.4", - "Source": "Repository", - "Repository": "RSPM", - "Requirements": [ - "htmltools" - ], - "Hash": "5aab57a3bd297eee1c1d862735972182" - }, - "jsonlite": { - "Package": "jsonlite", - "Version": "1.8.8", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "methods" - ], - "Hash": "e1b9c55281c5adc4dd113652d9e26768" - }, - "knitr": { - "Package": "knitr", - "Version": "1.48", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "evaluate", - "highr", - "methods", - "tools", - "xfun", - "yaml" - ], - "Hash": "acf380f300c721da9fde7df115a5f86f" - }, - "labeling": { - "Package": "labeling", - "Version": "0.4.3", - "Source": "Repository", - "Repository": "RSPM", - "Requirements": [ - "graphics", - "stats" - ], - "Hash": "b64ec208ac5bc1852b285f665d6368b3" - }, - "lattice": { - "Package": "lattice", - "Version": "0.22-6", - "Source": "Repository", - "Repository": "RSPM", - "Requirements": [ - "R", - "grDevices", - "graphics", - "grid", - "stats", - "utils" - ], - "Hash": "cc5ac1ba4c238c7ca9fa6a87ca11a7e2" - }, - "lifecycle": { - "Package": "lifecycle", - "Version": "1.0.4", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "cli", - "glue", - "rlang" - ], - "Hash": "b8552d117e1b808b09a832f589b79035" - }, - "magrittr": { - "Package": "magrittr", - "Version": "2.0.3", - "Source": "Repository", - "Repository": "RSPM", - "Requirements": [ - "R" - ], - "Hash": "7ce2733a9826b3aeb1775d56fd305472" - }, - "memoise": { - "Package": "memoise", - "Version": "2.0.1", - "Source": "Repository", - "Repository": "RSPM", - "Requirements": [ - "cachem", - "rlang" - ], - "Hash": "e2817ccf4a065c5d9d7f2cfbe7c1d78c" - }, - "mgcv": { - "Package": "mgcv", - "Version": "1.9-1", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "Matrix", - "R", - "graphics", - "methods", - "nlme", - "splines", - "stats", - "utils" - ], - "Hash": "110ee9d83b496279960e162ac97764ce" - }, - "mime": { - "Package": "mime", - "Version": "0.12", - "Source": "Repository", - "Repository": "RSPM", - "Requirements": [ - "tools" - ], - "Hash": "18e9c28c1d3ca1560ce30658b22ce104" - }, - "munsell": { - "Package": "munsell", - "Version": "0.5.1", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "colorspace", - "methods" - ], - "Hash": "4fd8900853b746af55b81fda99da7695" - }, - "nlme": { - "Package": "nlme", - "Version": "3.1-166", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "graphics", - "lattice", - "stats", - "utils" - ], - "Hash": "ccbb8846be320b627e6aa2b4616a2ded" - }, - "pillar": { - "Package": "pillar", - "Version": "1.9.0", - "Source": "Repository", - "Repository": "RSPM", - "Requirements": [ - "cli", - "fansi", - "glue", - "lifecycle", - "rlang", - "utf8", - "utils", - "vctrs" - ], - "Hash": "15da5a8412f317beeee6175fbc76f4bb" - }, - "pkgconfig": { - "Package": "pkgconfig", - "Version": "2.0.3", - "Source": "Repository", - "Repository": "RSPM", - "Requirements": [ - "utils" - ], - "Hash": "01f28d4278f15c76cddbea05899c5d6f" - }, - "plyr": { - "Package": "plyr", - "Version": "1.8.9", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "Rcpp" - ], - "Hash": "6b8177fd19982f0020743fadbfdbd933" - }, - "prettyunits": { - "Package": "prettyunits", - "Version": "1.2.0", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R" - ], - "Hash": "6b01fc98b1e86c4f705ce9dcfd2f57c7" - }, - "progress": { - "Package": "progress", - "Version": "1.2.3", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "R6", - "crayon", - "hms", - "prettyunits" - ], - "Hash": "f4625e061cb2865f111b47ff163a5ca6" - }, - "purrr": { - "Package": "purrr", - "Version": "1.0.2", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "cli", - "lifecycle", - "magrittr", - "rlang", - "vctrs" - ], - "Hash": "1cba04a4e9414bdefc9dcaa99649a8dc" - }, - "rappdirs": { - "Package": "rappdirs", - "Version": "0.3.3", - "Source": "Repository", - "Repository": "RSPM", - "Requirements": [ - "R" - ], - "Hash": "5e3c5dc0b071b21fa128676560dbe94d" - }, - "readr": { - "Package": "readr", - "Version": "2.1.5", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "R6", - "cli", - "clipr", - "cpp11", - "crayon", - "hms", - "lifecycle", - "methods", - "rlang", - "tibble", - "tzdb", - "utils", - "vroom" - ], - "Hash": "9de96463d2117f6ac49980577939dfb3" - }, - "renv": { - "Package": "renv", - "Version": "1.0.7", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "utils" - ], - "Hash": "397b7b2a265bc5a7a06852524dabae20" - }, - "rlang": { - "Package": "rlang", - "Version": "1.1.4", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "utils" - ], - "Hash": "3eec01f8b1dee337674b2e34ab1f9bc1" - }, - "rmarkdown": { - "Package": "rmarkdown", - "Version": "2.28", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "bslib", - "evaluate", - "fontawesome", - "htmltools", - "jquerylib", - "jsonlite", - "knitr", - "methods", - "tinytex", - "tools", - "utils", - "xfun", - "yaml" - ], - "Hash": "062470668513dcda416927085ee9bdc7" - }, - "rstudioapi": { - "Package": "rstudioapi", - "Version": "0.16.0", - "Source": "Repository", - "Repository": "CRAN", - "Hash": "96710351d642b70e8f02ddeb237c46a7" - }, - "sass": { - "Package": "sass", - "Version": "0.4.9", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R6", - "fs", - "htmltools", - "rappdirs", - "rlang" - ], - "Hash": "d53dbfddf695303ea4ad66f86e99b95d" - }, - "scales": { - "Package": "scales", - "Version": "1.3.0", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "R6", - "RColorBrewer", - "cli", - "farver", - "glue", - "labeling", - "lifecycle", - "munsell", - "rlang", - "viridisLite" - ], - "Hash": "c19df082ba346b0ffa6f833e92de34d1" - }, - "stringi": { - "Package": "stringi", - "Version": "1.8.4", - "Source": "Repository", - "Repository": "RSPM", - "Requirements": [ - "R", - "stats", - "tools", - "utils" - ], - "Hash": "39e1144fd75428983dc3f63aa53dfa91" - }, - "stringr": { - "Package": "stringr", - "Version": "1.5.1", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "cli", - "glue", - "lifecycle", - "magrittr", - "rlang", - "stringi", - "vctrs" - ], - "Hash": "960e2ae9e09656611e0b8214ad543207" - }, - "tibble": { - "Package": "tibble", - "Version": "3.2.1", - "Source": "Repository", - "Repository": "RSPM", - "Requirements": [ - "R", - "fansi", - "lifecycle", - "magrittr", - "methods", - "pillar", - "pkgconfig", - "rlang", - "utils", - "vctrs" - ], - "Hash": "a84e2cc86d07289b3b6f5069df7a004c" - }, - "tidyr": { - "Package": "tidyr", - "Version": "1.3.1", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "cli", - "cpp11", - "dplyr", - "glue", - "lifecycle", - "magrittr", - "purrr", - "rlang", - "stringr", - "tibble", - "tidyselect", - "utils", - "vctrs" - ], - "Hash": "915fb7ce036c22a6a33b5a8adb712eb1" - }, - "tidyselect": { - "Package": "tidyselect", - "Version": "1.2.1", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "cli", - "glue", - "lifecycle", - "rlang", - "vctrs", - "withr" - ], - "Hash": "829f27b9c4919c16b593794a6344d6c0" - }, - "tinytex": { - "Package": "tinytex", - "Version": "0.52", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "xfun" - ], - "Hash": "cfbad971a71f0e27cec22e544a08bc3b" - }, - "tzdb": { - "Package": "tzdb", - "Version": "0.4.0", - "Source": "Repository", - "Repository": "RSPM", - "Requirements": [ - "R", - "cpp11" - ], - "Hash": "f561504ec2897f4d46f0c7657e488ae1" - }, - "utf8": { - "Package": "utf8", - "Version": "1.2.4", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R" - ], - "Hash": "62b65c52671e6665f803ff02954446e9" - }, - "vctrs": { - "Package": "vctrs", - "Version": "0.6.5", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "cli", - "glue", - "lifecycle", - "rlang" - ], - "Hash": "c03fa420630029418f7e6da3667aac4a" - }, - "viridisLite": { - "Package": "viridisLite", - "Version": "0.4.2", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R" - ], - "Hash": "c826c7c4241b6fc89ff55aaea3fa7491" - }, - "visNetwork": { - "Package": "visNetwork", - "Version": "2.1.2", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "grDevices", - "htmltools", - "htmlwidgets", - "jsonlite", - "magrittr", - "methods", - "stats", - "utils" - ], - "Hash": "3e48b097e8d9a91ecced2ed4817a678d" - }, - "vroom": { - "Package": "vroom", - "Version": "1.6.5", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "bit64", - "cli", - "cpp11", - "crayon", - "glue", - "hms", - "lifecycle", - "methods", - "progress", - "rlang", - "stats", - "tibble", - "tidyselect", - "tzdb", - "vctrs", - "withr" - ], - "Hash": "390f9315bc0025be03012054103d227c" - }, - "withr": { - "Package": "withr", - "Version": "3.0.1", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "grDevices", - "graphics" - ], - "Hash": "07909200e8bbe90426fbfeb73e1e27aa" - }, - "xfun": { - "Package": "xfun", - "Version": "0.47", - "Source": "Repository", - "Repository": "CRAN", - "Requirements": [ - "R", - "grDevices", - "stats", - "tools" - ], - "Hash": "36ab21660e2d095fef0d83f689e0477c" - }, - "yaml": { - "Package": "yaml", - "Version": "2.3.10", - "Source": "Repository", - "Repository": "CRAN", - "Hash": "51dab85c6c98e50a18d7551e9d49f76c" - } - } -}