Skip to content

Commit

Permalink
markdown source builds
Browse files Browse the repository at this point in the history
Auto-generated via `{sandpaper}`
Source  : cdd2fd6
Branch  : main
Author  : Nelly Sélem <[email protected]>
Time    : 2024-10-16 16:26:17 +0000
Message : Merge pull request #166 from swcarpentry/update/packages

Update 10 packages
  • Loading branch information
actions-user committed Oct 16, 2024
1 parent 25b957f commit 0f3f928
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 1,181 deletions.
4 changes: 2 additions & 2 deletions 01-rstudio-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ ls()
```

``` output
[1] "x" "y"
[1] "object" "x" "y"
```

::::::::::::::::::::::::::::::::::::::::: callout
Expand Down Expand Up @@ -575,7 +575,7 @@ function (name, pos = -1L, envir = as.environment(pos), all.names = FALSE,
}
else all.names
}
<bytecode: 0x557005704d80>
<bytecode: 0x55b26aa87d80>
<environment: namespace:base>
```

Expand Down
2 changes: 1 addition & 1 deletion 02-project-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions 03-seeking-help.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
12 changes: 6 additions & 6 deletions 05-data-structures-part2.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

:::::::::::::::::::::::::
Expand Down
4 changes: 2 additions & 2 deletions 07-control-flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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
```

:::::::::::::::::::::::::
Expand Down
96 changes: 0 additions & 96 deletions config.yaml

This file was deleted.

54 changes: 27 additions & 27 deletions md5sum.txt
Original file line number Diff line number Diff line change
@@ -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"
Loading

0 comments on commit 0f3f928

Please sign in to comment.