Skip to content

Commit

Permalink
differences for PR #883
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Apr 2, 2024
1 parent 4cdf1f8 commit 8d6bd19
Show file tree
Hide file tree
Showing 21 changed files with 35 additions and 1,712 deletions.
18 changes: 9 additions & 9 deletions 00-before-we-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -454,20 +454,20 @@ sessionInfo()
#> [1] stats graphics grDevices utils datasets methods base
#>
#> other attached packages:
#> [1] RSQLite_2.3.4 lubridate_1.9.3 forcats_1.0.0 stringr_1.5.1
#> [5] dplyr_1.1.4 purrr_1.0.2 readr_2.1.4 tidyr_1.3.0
#> [9] tibble_3.2.1 ggplot2_3.4.4 tidyverse_2.0.0 knitr_1.45
#> [1] RSQLite_2.3.6 lubridate_1.9.3 forcats_1.0.0 stringr_1.5.1
#> [5] dplyr_1.1.4 purrr_1.0.2 readr_2.1.5 tidyr_1.3.1
#> [9] tibble_3.2.1 ggplot2_3.5.0 tidyverse_2.0.0 knitr_1.45
#>
#> loaded via a namespace (and not attached):
#> [1] bit_4.0.5 gtable_0.3.4 compiler_4.3.3 renv_1.0.5
#> [5] highr_0.10 tidyselect_1.2.0 blob_1.2.4 scales_1.3.0
#> [5] highr_0.10 tidyselect_1.2.1 blob_1.2.4 scales_1.3.0
#> [9] fastmap_1.1.1 yaml_2.3.8 R6_2.5.1 generics_0.1.3
#> [13] munsell_0.5.0 DBI_1.2.0 pillar_1.9.0 tzdb_0.4.0
#> [17] rlang_1.1.2 utf8_1.2.4 cachem_1.0.8 stringi_1.8.3
#> [21] xfun_0.41 bit64_4.0.5 memoise_2.0.1 timechange_0.2.0
#> [25] cli_3.6.2 withr_2.5.2 magrittr_2.0.3 grid_4.3.3
#> [13] munsell_0.5.1 DBI_1.2.2 pillar_1.9.0 tzdb_0.4.0
#> [17] rlang_1.1.3 utf8_1.2.4 cachem_1.0.8 stringi_1.8.3
#> [21] xfun_0.43 bit64_4.0.5 memoise_2.0.1 timechange_0.3.0
#> [25] cli_3.6.2 withr_3.0.0 magrittr_2.0.3 grid_4.3.3
#> [29] hms_1.1.3 lifecycle_1.0.4 vctrs_0.6.5 evaluate_0.23
#> [33] glue_1.6.2 fansi_1.0.6 colorspace_2.1-0 tools_4.3.3
#> [33] glue_1.7.0 fansi_1.0.6 colorspace_2.1-0 tools_4.3.3
#> [37] pkgconfig_2.0.3
```

Expand Down
18 changes: 9 additions & 9 deletions 05-r-and-databases.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ src_dbi(mammals)
```

```{.output}
#> src: sqlite 3.44.2 [/home/runner/work/R-ecology-lesson/R-ecology-lesson/site/built/data_raw/portal_mammals.sqlite]
#> src: sqlite 3.45.2 [/home/runner/work/R-ecology-lesson/R-ecology-lesson/site/built/data_raw/portal_mammals.sqlite]
#> tbls: plots, species, surveys
```

Expand Down Expand Up @@ -188,7 +188,7 @@ head(surveys, n = 10)

```{.output}
#> # Source: SQL [10 x 9]
#> # Database: sqlite 3.44.2 [/home/runner/work/R-ecology-lesson/R-ecology-lesson/site/built/data_raw/portal_mammals.sqlite]
#> # Database: sqlite 3.45.2 [/home/runner/work/R-ecology-lesson/R-ecology-lesson/site/built/data_raw/portal_mammals.sqlite]
#> record_id month day year plot_id species_id sex hindfoot_length weight
#> <int> <int> <int> <int> <int> <chr> <chr> <int> <int>
#> 1 1 7 16 1977 2 NL M 32 NA
Expand Down Expand Up @@ -295,7 +295,7 @@ surveys %>%

```{.output}
#> # Source: SQL [?? x 3]
#> # Database: sqlite 3.44.2 [/home/runner/work/R-ecology-lesson/R-ecology-lesson/site/built/data_raw/portal_mammals.sqlite]
#> # Database: sqlite 3.45.2 [/home/runner/work/R-ecology-lesson/R-ecology-lesson/site/built/data_raw/portal_mammals.sqlite]
#> species_id sex weight
#> <chr> <chr> <int>
#> 1 PF M 4
Expand Down Expand Up @@ -359,7 +359,7 @@ data_subset %>%

```{.output}
#> # Source: SQL [?? x 2]
#> # Database: sqlite 3.44.2 [/home/runner/work/R-ecology-lesson/R-ecology-lesson/site/built/data_raw/portal_mammals.sqlite]
#> # Database: sqlite 3.45.2 [/home/runner/work/R-ecology-lesson/R-ecology-lesson/site/built/data_raw/portal_mammals.sqlite]
#> species_id weight
#> <chr> <int>
#> 1 PF 4
Expand Down Expand Up @@ -427,8 +427,8 @@ plots
```

```{.output}
#> # Source: table<plots> [?? x 2]
#> # Database: sqlite 3.44.2 [/home/runner/work/R-ecology-lesson/R-ecology-lesson/site/built/data_raw/portal_mammals.sqlite]
#> # Source: table<`plots`> [?? x 2]
#> # Database: sqlite 3.45.2 [/home/runner/work/R-ecology-lesson/R-ecology-lesson/site/built/data_raw/portal_mammals.sqlite]
#> plot_id plot_type
#> <int> <chr>
#> 1 1 Spectab exclosure
Expand All @@ -452,8 +452,8 @@ surveys
```

```{.output}
#> # Source: table<surveys> [?? x 9]
#> # Database: sqlite 3.44.2 [/home/runner/work/R-ecology-lesson/R-ecology-lesson/site/built/data_raw/portal_mammals.sqlite]
#> # Source: table<`surveys`> [?? x 9]
#> # Database: sqlite 3.45.2 [/home/runner/work/R-ecology-lesson/R-ecology-lesson/site/built/data_raw/portal_mammals.sqlite]
#> record_id month day year plot_id species_id sex hindfoot_length weight
#> <int> <int> <int> <int> <int> <chr> <chr> <int> <int>
#> 1 1 7 16 1977 2 NL M 32 NA
Expand Down Expand Up @@ -723,7 +723,7 @@ my_db
```

```{.output}
#> src: sqlite 3.44.2 [/home/runner/work/R-ecology-lesson/R-ecology-lesson/site/built/data/portal-database-output.sqlite]
#> src: sqlite 3.45.2 [/home/runner/work/R-ecology-lesson/R-ecology-lesson/site/built/data/portal-database-output.sqlite]
#> tbls:
```

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

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fig/04-visualization-ggplot2-rendered-boxplot-with-points-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fig/04-visualization-ggplot2-rendered-color-by-species-1-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fig/04-visualization-ggplot2-rendered-integrating-the-pipe-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fig/04-visualization-ggplot2-rendered-patchwork-example-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fig/04-visualization-ggplot2-rendered-unnamed-chunk-10-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fig/04-visualization-ggplot2-rendered-unnamed-chunk-11-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fig/04-visualization-ggplot2-rendered-unnamed-chunk-9-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 17 additions & 17 deletions md5sum.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
"file" "checksum" "built" "date"
"CITATION.Rmd" "98c744817354e3830f876dfc7fa90a5a" "site/built/CITATION.md" "2024-03-12"
"CONDUCT.Rmd" "7c641d39cca87dd06dfd87fc535dc24a" "site/built/CONDUCT.md" "2024-03-12"
"LICENSE.Rmd" "ac8cf7fc8ee2cfb893ff831001b97e29" "site/built/LICENSE.md" "2024-03-12"
"NEWS.md" "fd72095d364a9ae2aefcaa02168bb2a7" "site/built/NEWS.md" "2024-03-12"
"config.yaml" "0bdaec9a0c1aefd12e53078e75896f83" "site/built/config.yaml" "2024-03-12"
"index.Rmd" "f4dc53fbc99acaad7151855bb079c0ef" "site/built/index.md" "2024-03-26"
"episodes/00-before-we-start.Rmd" "0f589f0a88627ca4a046d84abf8a3ace" "site/built/00-before-we-start.md" "2024-03-12"
"episodes/01-intro-to-r.Rmd" "9d0341af304a8ff96edd39a0032bf32d" "site/built/01-intro-to-r.md" "2024-03-12"
"episodes/02-starting-with-data.Rmd" "1d17881fd589b9208eda76c8bef547bd" "site/built/02-starting-with-data.md" "2024-03-12"
"episodes/03-dplyr.Rmd" "c5bf6b8e6d7525fe0bb21b1216549574" "site/built/03-dplyr.md" "2024-03-12"
"episodes/04-visualization-ggplot2.Rmd" "293adf112d0e888e00fef2393fd6e9b7" "site/built/04-visualization-ggplot2.md" "2024-03-12"
"episodes/05-r-and-databases.Rmd" "0eb6e0b5a2c138c775dea10e66874aa6" "site/built/05-r-and-databases.md" "2024-03-12"
"instructors/instructor-notes.md" "881944c8977f877747cbe0f392fb6766" "site/built/instructor-notes.md" "2024-03-12"
"learners/reference.md" "d64102b12c29b96d29ace337ac32746d" "site/built/reference.md" "2024-03-12"
"learners/setup.md" "7a5a2014cea19ae5a0015867a1e660d1" "site/built/setup.md" "2024-03-12"
"profiles/learner-profiles.md" "60b93493cf1da06dfd63255d73854461" "site/built/learner-profiles.md" "2024-03-12"
"renv/profiles/lesson-requirements/renv.lock" "c6336601a37ddc3da1e62fe7ecf055b4" "site/built/renv.lock" "2024-03-12"
"CITATION.Rmd" "98c744817354e3830f876dfc7fa90a5a" "site/built/CITATION.md" "2024-04-02"
"CONDUCT.Rmd" "7c641d39cca87dd06dfd87fc535dc24a" "site/built/CONDUCT.md" "2024-04-02"
"LICENSE.Rmd" "ac8cf7fc8ee2cfb893ff831001b97e29" "site/built/LICENSE.md" "2024-04-02"
"NEWS.md" "fd72095d364a9ae2aefcaa02168bb2a7" "site/built/NEWS.md" "2024-04-02"
"config.yaml" "0bdaec9a0c1aefd12e53078e75896f83" "site/built/config.yaml" "2024-04-02"
"index.Rmd" "f4dc53fbc99acaad7151855bb079c0ef" "site/built/index.md" "2024-04-02"
"episodes/00-before-we-start.Rmd" "0f589f0a88627ca4a046d84abf8a3ace" "site/built/00-before-we-start.md" "2024-04-02"
"episodes/01-intro-to-r.Rmd" "9d0341af304a8ff96edd39a0032bf32d" "site/built/01-intro-to-r.md" "2024-04-02"
"episodes/02-starting-with-data.Rmd" "1d17881fd589b9208eda76c8bef547bd" "site/built/02-starting-with-data.md" "2024-04-02"
"episodes/03-dplyr.Rmd" "c5bf6b8e6d7525fe0bb21b1216549574" "site/built/03-dplyr.md" "2024-04-02"
"episodes/04-visualization-ggplot2.Rmd" "293adf112d0e888e00fef2393fd6e9b7" "site/built/04-visualization-ggplot2.md" "2024-04-02"
"episodes/05-r-and-databases.Rmd" "0eb6e0b5a2c138c775dea10e66874aa6" "site/built/05-r-and-databases.md" "2024-04-02"
"instructors/instructor-notes.md" "881944c8977f877747cbe0f392fb6766" "site/built/instructor-notes.md" "2024-04-02"
"learners/reference.md" "d64102b12c29b96d29ace337ac32746d" "site/built/reference.md" "2024-04-02"
"learners/setup.md" "7a5a2014cea19ae5a0015867a1e660d1" "site/built/setup.md" "2024-04-02"
"profiles/learner-profiles.md" "60b93493cf1da06dfd63255d73854461" "site/built/learner-profiles.md" "2024-04-02"
"renv/profiles/lesson-requirements/renv.lock" "5a86bf81bda3d9df716cb8e5a1a43d9f" "site/built/renv.lock" "2024-04-02"
Loading

0 comments on commit 8d6bd19

Please sign in to comment.