Skip to content

Commit

Permalink
markdown source builds
Browse files Browse the repository at this point in the history
Auto-generated via {sandpaper}
Source  : 91f546a
Branch  : main
Author  : Nelly Sélem <nselem35@hotmail.com>
Time    : 2024-05-07 20:10:30 +0000
Message : Merge pull request #159 from swcarpentry/update/packages

Update 12 packages
  • Loading branch information
actions-user committed May 7, 2024
1 parent 2009c9f commit 2790b94
Show file tree
Hide file tree
Showing 17 changed files with 329 additions and 1,468 deletions.
50 changes: 25 additions & 25 deletions 01-rstudio-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Lo más simple que podrías hacer con R es aritmética:
1 + 100
```

```{.output}
```output
[1] 101
```

Expand Down Expand Up @@ -167,7 +167,7 @@ De mayor a menor precedencia:
3 + 5 * 2
```

```{.output}
```output
[1] 13
```

Expand All @@ -178,7 +178,7 @@ Usa paréntesis para agrupar las operaciones a fin de forzar el orden de la eval
(3 + 5) * 2
```

```{.output}
```output
[1] 16
```

Expand All @@ -201,7 +201,7 @@ Los números pequeños o grandes tienen una notación científica:
2/10000
```

```{.output}
```output
[1] 2e-04
```

Expand All @@ -214,7 +214,7 @@ Tú también puedes escribir números en notación científica:
5e3 # nota la falta del signo menos aquí
```

```{.output}
```output
[1] 5000
```

Expand All @@ -228,7 +228,7 @@ Todo lo que escribas dentro de los paréntesis se llaman argumentos de la funci
sin(1) # función trigonométrica
```

```{.output}
```output
[1] 0.841471
```

Expand All @@ -237,7 +237,7 @@ sin(1) # función trigonométrica
log(1) # logaritmo natural
```

```{.output}
```output
[1] 0
```

Expand All @@ -246,7 +246,7 @@ log(1) # logaritmo natural
log10(10) # logaritmo en base-10
```

```{.output}
```output
[1] 1
```

Expand All @@ -255,7 +255,7 @@ log10(10) # logaritmo en base-10
exp(0.5) # e^(1/2)
```

```{.output}
```output
[1] 1.648721
```

Expand All @@ -279,7 +279,7 @@ Podemos realizar comparaciones en R:
1 == 1 # igualdad (observa dos signos iguales, se lee como "es igual a")
```

```{.output}
```output
[1] TRUE
```

Expand All @@ -288,7 +288,7 @@ Podemos realizar comparaciones en R:
1 != 2 # desigualdad (leída como "no es igual a")
```

```{.output}
```output
[1] TRUE
```

Expand All @@ -297,7 +297,7 @@ Podemos realizar comparaciones en R:
1 < 2 # menor que
```

```{.output}
```output
[1] TRUE
```

Expand All @@ -306,7 +306,7 @@ Podemos realizar comparaciones en R:
1 <= 1 # menor o igual que
```

```{.output}
```output
[1] TRUE
```

Expand All @@ -315,7 +315,7 @@ Podemos realizar comparaciones en R:
1 > 0 # mayor que
```

```{.output}
```output
[1] TRUE
```

Expand All @@ -324,7 +324,7 @@ Podemos realizar comparaciones en R:
1 >= -9 # mayor o igual que
```

```{.output}
```output
[1] TRUE
```

Expand Down Expand Up @@ -365,7 +365,7 @@ Observa que la asignación no muestra el valor. En cambio, lo almacena para más
x
```

```{.output}
```output
[1] 0.025
```

Expand All @@ -378,7 +378,7 @@ Busca la pestaña `Environment` en uno de los paneles de RStudio, y verás que `
log(x)
```

```{.output}
```output
[1] -3.688879
```

Expand Down Expand Up @@ -485,15 +485,15 @@ mismo tipo de datos en un cierto orden. Por ejemplo:
1:5
```

```{.output}
```output
[1] 1 2 3 4 5
```

```r
2^(1:5)
```

```{.output}
```output
[1] 2 4 8 16 32
```

Expand All @@ -502,7 +502,7 @@ x <- 1:5
2^x
```

```{.output}
```output
[1] 2 4 8 16 32
```

Expand All @@ -520,7 +520,7 @@ Hay algunos comandos útiles que puedes usar para interactuar con la sesión de
ls()
```

```{.output}
```output
[1] "x" "y"
```

Expand All @@ -543,7 +543,7 @@ Si escribimos `ls` nada más, ¡R mostrará el código fuente de esa función!
ls
```

```{.output}
```output
function (name, pos = -1L, envir = as.environment(pos), all.names = FALSE,
pattern, sorted = TRUE)
{
Expand Down Expand Up @@ -575,7 +575,7 @@ function (name, pos = -1L, envir = as.environment(pos), all.names = FALSE,
}
else all.names
}
<bytecode: 0x5607bf4499a8>
<bytecode: 0x562114383918>
<environment: namespace:base>
```

Expand Down Expand Up @@ -605,7 +605,7 @@ Si, en cambio, usamos `<-`, habrá efectos secundarios no deseados, o puedes rec
rm(list <- ls())
```

```{.error}
```error
Error in rm(list <- ls()): ... must contain names or character strings
```

Expand Down Expand Up @@ -707,7 +707,7 @@ Una forma de responder esta pregunta en R es usar `>` para hacer lo siguiente:
mass > age
```

```{.output}
```output
[1] TRUE
```

Expand Down
8 changes: 4 additions & 4 deletions 02-project-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ Al ejecutar estos comandos en la terminal:
ls -lh data/gapminder-FiveYearData.csv
```

```{.output}
-rw-r--r-- 1 runner docker 80K Apr 2 01:05 data/gapminder-FiveYearData.csv
```output
-rw-r--r-- 1 runner docker 80K May 7 20:12 data/gapminder-FiveYearData.csv
```

El tamaño del archivo es 80K.
Expand All @@ -220,7 +220,7 @@ El tamaño del archivo es 80K.
wc -l data/gapminder-FiveYearData.csv
```

```{.output}
```output
1705 data/gapminder-FiveYearData.csv
```

Expand All @@ -231,7 +231,7 @@ Hay 1705 líneas. Los datos se ven así:
head data/gapminder-FiveYearData.csv
```

```{.output}
```output
country,year,pop,continent,lifeExp,gdpPercap
Afghanistan,1952,8425333,Asia,28.801,779.4453145
Afghanistan,1957,9240934,Asia,30.332,820.8530296
Expand Down
14 changes: 7 additions & 7 deletions 03-seeking-help.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ ser copiados y pegados por cualquier otra persona en su sesión de R.
sessionInfo()
```

```{.output}
```output
R version 4.3.3 (2024-02-29)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Ubuntu 22.04.4 LTS
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.3.3 tools_4.3.3 yaml_2.3.8 knitr_1.45 xfun_0.43
[6] renv_1.0.5 evaluate_0.23
[1] compiler_4.3.3 tools_4.3.3 yaml_2.3.8 knitr_1.46 xfun_0.43
[6] renv_1.0.7 evaluate_0.23
```

Imprimirá tu versión actual de R, así como cualquier paquete que hayas
Expand Down Expand Up @@ -221,31 +221,31 @@ e.g.
paste(c("a","b"), "c")
```

```{.output}
```output
[1] "a c" "b c"
```

```r
paste(c("a","b"), "c", sep = ",")
```

```{.output}
```output
[1] "a,c" "b,c"
```

```r
paste(c("a","b"), "c", collapse = "|")
```

```{.output}
```output
[1] "a c|b c"
```

```r
paste(c("a","b"), "c", sep = ",", collapse = "|")
```

```{.output}
```output
[1] "a,c|b,c"
```

Expand Down
Loading

0 comments on commit 2790b94

Please sign in to comment.