From 676261d78ea55d1a8888fee7df62c12a36d275ba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 5 Dec 2024 21:01:25 +0000 Subject: [PATCH] Render site --- docs/module_details/day1.html | 2 +- help.html | 8 ++++---- index.html | 13 ++++--------- materials_schedule.html | 4 ++-- modules/Basic_R/lab/Basic_R_Lab.Rmd | 2 +- modules/Data_Input/Data_Input.html | 8 +------- modules/Intro/Intro.html | 12 ++++-------- modules/RStudio/RStudio.html | 19 +++++++++++++++++++ 8 files changed, 36 insertions(+), 32 deletions(-) diff --git a/docs/module_details/day1.html b/docs/module_details/day1.html index bc7d426a..9f3abef8 100644 --- a/docs/module_details/day1.html +++ b/docs/module_details/day1.html @@ -203,7 +203,7 @@

Material

Basic R HTML, PDF, Rmd -Lab Rmd, Key, Key HTML +HTML, Key HTML diff --git a/help.html b/help.html index 33b94600..631985d1 100644 --- a/help.html +++ b/help.html @@ -353,14 +353,14 @@

Why are my changes not taking effect? It’s making my results look

Here we are creating a new object from an existing one:

new_rivers <- sample(rivers, 5)
 new_rivers
-
## [1]  890  730  314 2533  210
+
## [1] 390 338 900 217 720

Using just this will only print the result and not actually change new_rivers:

new_rivers + 1
-
## [1]  891  731  315 2534  211
+
## [1] 391 339 901 218 721

If we want to modify new_rivers and save that modified version, then we need to reassign new_rivers like so:

new_rivers <- new_rivers + 1
 new_rivers
-
## [1]  891  731  315 2534  211
+
## [1] 391 339 901 218 721

If we forget to reassign this can cause subsequent steps to not work as expected because we will not be working with the data that has been modified.


@@ -409,7 +409,7 @@

Error: object ‘X’ not found

Make sure you run something like this, with the <- operator:

rivers2 <- new_rivers + 1
 rivers2
-
## [1]  892  732  316 2535  212
+
## [1] 392 340 902 219 722

diff --git a/index.html b/index.html index 077df092..154490d1 100644 --- a/index.html +++ b/index.html @@ -300,9 +300,6 @@

Welcome!


- - -

Data Science for Environmental Health (DaSEH) is a short course that combines online learning and an in-person project-focused intensive. DaSEH is tailored for beginners and novices in R programming, offering instruction on importing, wrangling, visualizing, and analyzing data. It provides hands-on training in using R for statistical computing, a widely-used open-source tool for data analysis and visualization.

This training initiative is funded by National Institute of Environmental Health Sciences 1R25ES035590-01.


@@ -313,15 +310,13 @@

Format


Online course

-

September 30 - October 10
-10:30am - 2pm Pacific Time

+

June 2026 10:30am - 2pm Pacific Time

Two-week online course in R programming foundations.


Code-a-thon

-

October 23-25 (in person in Seattle)
-9:30am - 4pm Pacific Time

+

June 2026 9:30am - 4pm Pacific Time

Three-day in-person intensive “Code-a-thon”. Here, we’ll work on authentic environmental health projects. We’ll also practice data ethics skills in peer code review, reproducibility, and transparency in a supportive environment.


@@ -333,7 +328,7 @@

Instructors


- +
@@ -351,7 +346,7 @@

Testimonials from our other courses:

Find an Error!?


Feel free to submit typos/errors/etc via the GitHub repository associated with the class: https://github.com/fhdsl/DaSEH

-

This page was last updated on 2024-11-14.

+

This page was last updated on 2024-12-05.

Creative Commons License

diff --git a/materials_schedule.html b/materials_schedule.html index ceb6405e..938b9a60 100644 --- a/materials_schedule.html +++ b/materials_schedule.html @@ -373,7 +373,7 @@

Online Schedule + Materials

Basic R HTML, PDF, Rmd -Lab Rmd, Key, Key HTML +HTML, Key HTML @@ -498,7 +498,7 @@

In-person Code-a-thon Schedule + Materials

  • Schedule
  • Instructor Slides
  • Mapping module HTML, PDF, Rmd
  • -
  • Lightning Talk Upload Folder
  • +
  • Lightning Talk Upload Folder
  • Project Template
  • Project Example
  • Project Example (rendered)
  • diff --git a/modules/Basic_R/lab/Basic_R_Lab.Rmd b/modules/Basic_R/lab/Basic_R_Lab.Rmd index 74300a1c..ebe7db71 100644 --- a/modules/Basic_R/lab/Basic_R_Lab.Rmd +++ b/modules/Basic_R/lab/Basic_R_Lab.Rmd @@ -9,7 +9,7 @@ editor_options: knitr::opts_chunk$set(echo = TRUE) ``` -Instructions: Complete the following in the R console. +Instructions: Paste your code from the console in the gray boxes below. # Part 1 diff --git a/modules/Data_Input/Data_Input.html b/modules/Data_Input/Data_Input.html index d19f2066..4968ba3e 100644 --- a/modules/Data_Input/Data_Input.html +++ b/modules/Data_Input/Data_Input.html @@ -181,13 +181,7 @@

    This course will involve moving files around on your computer and downloading files.

    -

    If you are new to this - check out these videos.

    - -

    If you have a PC: https://youtu.be/we6vwB7DsNU

    - -

    If you have a Mac: https://www.youtube.com/watch?v=Ao9e0cDzMrE

    - -

    You can find these on the resource page of the website.

    +

    If you are new to this - check out the videos on the resource page of the website.

    R Projects

    diff --git a/modules/Intro/Intro.html b/modules/Intro/Intro.html index 60a50efa..a0cd89b1 100644 --- a/modules/Intro/Intro.html +++ b/modules/Intro/Intro.html @@ -128,7 +128,7 @@

    Carrie Wright (she/her)

    -

    Senior Staff Scientist and Training Lead, Fred Hutchinson Cancer Center

    +

    Senior Staff Scientist, Fred Hutchinson Cancer Center

    Associate, Department of Biostatistics, JHSPH

    @@ -286,8 +286,6 @@

    Pulse Check Survey

    Summary

    Summary

    diff --git a/modules/RStudio/RStudio.html b/modules/RStudio/RStudio.html index 27bed0af..9b4494c0 100644 --- a/modules/RStudio/RStudio.html +++ b/modules/RStudio/RStudio.html @@ -394,6 +394,25 @@

    help_pane

    +

    Lab: Getting started

    + +

    To do this lab we need to:

    + +
      +
    • Download the file at the link above by clicking on it or go to the website schedule page

    • +
    • Find the downloaded file on your computer

    • +
    • Open the file in RStudio (double clicking the file name typically works, otherwise right click)

    • +
    • Might need to restart RStudio

    • +
    + +

    These videos can help if you aren’t sure where your downloads are:

    + +

    If you have a PC: https://youtu.be/we6vwB7DsNU

    + +

    If you have a Mac: https://www.youtube.com/watch?v=Ao9e0cDzMrE

    + +

    You can find these on the resource page of the class website.

    +

    Summary