Skip to content

Commit

Permalink
Render site
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 5, 2024
1 parent 1c5c2e7 commit 676261d
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 32 deletions.
2 changes: 1 addition & 1 deletion docs/module_details/day1.html
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ <h2>Material</h2>
<td align="center"></td>
<td align="center">Basic R</td>
<td align="center"><a href="../../modules/Basic_R/Basic_R.html">HTML</a>, <a href="../../modules/Basic_R/Basic_R.pdf">PDF</a>, <a href="../../modules/Basic_R/Basic_R.Rmd">Rmd</a></td>
<td align="center"><a href="../../modules/Basic_R/lab/Basic_R_Lab.Rmd">Lab Rmd</a>, <a href="../../modules/Basic_R/lab/Basic_R_Lab_Key.Rmd">Key</a>, <a href="../../modules/Basic_R/lab/Basic_R_Lab_Key.html">Key HTML</a></td>
<td align="center"><a href="../../modules/Basic_R/lab/Basic_R_Lab.html">HTML</a>, <a href="../../modules/Basic_R/lab/Basic_R_Lab_Key.html">Key HTML</a></td>
<td align="center"></td>
</tr>
<tr class="odd">
Expand Down
8 changes: 4 additions & 4 deletions help.html
Original file line number Diff line number Diff line change
Expand Up @@ -353,14 +353,14 @@ <h2><strong>Why are my changes not taking effect? It’s making my results look
<p>Here we are creating a new object from an existing one:</p>
<pre class="r"><code>new_rivers &lt;- sample(rivers, 5)
new_rivers</code></pre>
<pre><code>## [1] 890 730 314 2533 210</code></pre>
<pre><code>## [1] 390 338 900 217 720</code></pre>
<p>Using just this will only print the result and not actually change <code>new_rivers</code>:</p>
<pre class="r"><code>new_rivers + 1</code></pre>
<pre><code>## [1] 891 731 315 2534 211</code></pre>
<pre><code>## [1] 391 339 901 218 721</code></pre>
<p>If we want to modify <code>new_rivers</code> and save that modified version, then we need to reassign <code>new_rivers</code> like so:</p>
<pre class="r"><code>new_rivers &lt;- new_rivers + 1
new_rivers</code></pre>
<pre><code>## [1] 891 731 315 2534 211</code></pre>
<pre><code>## [1] 391 339 901 218 721</code></pre>
<p>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.</p>
<hr />
</div>
Expand Down Expand Up @@ -409,7 +409,7 @@ <h2><strong>Error: object ‘X’ not found</strong></h2>
<p>Make sure you run something like this, with the <code>&lt;-</code> operator:</p>
<pre class="r"><code>rivers2 &lt;- new_rivers + 1
rivers2</code></pre>
<pre><code>## [1] 892 732 316 2535 212</code></pre>
<pre><code>## [1] 392 340 902 219 722</code></pre>
<hr />
</div>
<div id="error-unexpected-in-error-unexpected-in-error-unexpected-x-in" class="section level2">
Expand Down
13 changes: 4 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,6 @@ <h1 class="title toc-ignore"><p><img src="images/DaSEH_banner_wide_transparent.p
<div id="welcome" class="section level1">
<h1>Welcome!</h1>
<hr />
<!-- <div class="leafshape" id="one"><br><b>Travel <br> awards <br> are available <br>for eligible participants!<br><br> -->
<!-- &emsp; Sept 30 - Oct 10 (online) &emsp; <br> Oct 23 - 25 (Seattle) <br> -->
<!-- <a href="https://forms.gle/BNrdKJJ8PHpQtKMS8"> Applications <br> Open! </b><br></a></span> <br> </div> -->
<p>Data Science for Environmental Health (DaSEH) is a short course that combines <strong>online</strong> learning and an <strong>in-person</strong> 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.</p>
<p>This training initiative is funded by National Institute of Environmental Health Sciences <a href="https://reporter.nih.gov/search/cMEAgQFeo025gUX1DDzH9g/project-details/10746327">1R25ES035590-01</a>.</p>
<p><br></p>
Expand All @@ -313,15 +310,13 @@ <h2>Format</h2>
<hr />
<div id="online-course" class="section level4">
<h4>Online course</h4>
<p><em>September 30 - October 10</em><br />
<em>10:30am - 2pm Pacific Time</em></p>
<p><em>June 2026</em> <em>10:30am - 2pm Pacific Time</em></p>
<p>Two-week online course in R programming foundations.</p>
<p><br></p>
</div>
<div id="code-a-thon" class="section level4">
<h4>Code-a-thon</h4>
<p><em>October 23-25 (in person in Seattle)</em><br />
<em>9:30am - 4pm Pacific Time</em></p>
<p><em>June 2026</em> <em>9:30am - 4pm Pacific Time</em></p>
<p>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.</p>
<p><br></p>
</div>
Expand All @@ -333,7 +328,7 @@ <h4>Instructors</h4>
<p><br></p>
<!-- ## Sign Up! -->
<!-- *** -->
<!-- Please apply for the Fall Session using [this form](https://forms.gle/BNrdKJJ8PHpQtKMS8) by **August 16, 2024**. -->
<!-- Please apply for the Fall Session using [this form](https://forms.gle/pfX4zCPFjTinKttaA) by **August 16, 2024**. -->
<!-- You can reach out to daseh @ fredhutch.org with any questions. -->
<!-- <br> -->
</div>
Expand All @@ -351,7 +346,7 @@ <h2>Testimonials from our other courses:</h2>
<h2>Find an Error!?</h2>
<hr />
<p>Feel free to submit typos/errors/etc via the GitHub repository associated with the class: <a href="https://github.com/fhdsl/DaSEH" class="uri">https://github.com/fhdsl/DaSEH</a></p>
<p>This page was last updated on 2024-11-14.</p>
<p>This page was last updated on 2024-12-05.</p>
<p style="text-align:center;">
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://live.staticflickr.com/4557/26350808799_6f9c8bcaa2_b.jpg" height="150"/> </a>
</p>
Expand Down
4 changes: 2 additions & 2 deletions materials_schedule.html
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ <h2>Online Schedule + Materials</h2>
<td align="center"></td>
<td align="center">Basic R</td>
<td align="center"><a href="modules/Basic_R/Basic_R.html">HTML</a>, <a href="modules/Basic_R/Basic_R.pdf">PDF</a>, <a href="modules/Basic_R/Basic_R.Rmd">Rmd</a></td>
<td align="center"><a href="modules/Basic_R/lab/Basic_R_Lab.Rmd">Lab Rmd</a>, <a href="modules/Basic_R/lab/Basic_R_Lab_Key.Rmd">Key</a>, <a href="modules/Basic_R/lab/Basic_R_Lab_Key.html">Key HTML</a></td>
<td align="center"><a href="modules/Basic_R/lab/Basic_R_Lab.html">HTML</a>, <a href="modules/Basic_R/lab/Basic_R_Lab_Key.html">Key HTML</a></td>
<td align="center"></td>
</tr>
<tr class="even">
Expand Down Expand Up @@ -498,7 +498,7 @@ <h2>In-person Code-a-thon Schedule + Materials</h2>
<li><a href="https://docs.google.com/document/d/1ZD-w0vc3Vtv1vf95h6323zaaxORg9vC7Hp4I_IUeW0I/edit?usp=sharing">Schedule</a></li>
<li><a href="https://drive.google.com/drive/folders/18LZlTF-iGwM6kZvFGeoFq1wFmIvOyCYQ?usp=sharing">Instructor Slides</a></li>
<li>Mapping module <a href="resources/Mapping.html">HTML</a>, <a href="resources/Mapping.pdf">PDF</a>, <a href="resources/Mapping.Rmd">Rmd</a></li>
<li><a href="https://drive.google.com/drive/folders/1YyWArRRKWJ8it6fx9emgqT6S_WsVJLJM?usp=sharing">Lightning Talk Upload Folder</a></li>
<li><a href="">Lightning Talk Upload Folder</a></li>
<li><a href="modules/Project_Template/Project_Template.Rmd">Project Template</a></li>
<li><a href="modules/Project_Example/Project_Example.Rmd">Project Example</a></li>
<li><a href="modules/Project_Example/Project_Example.html">Project Example (rendered)</a></li>
Expand Down
2 changes: 1 addition & 1 deletion modules/Basic_R/lab/Basic_R_Lab.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 1 addition & 7 deletions modules/Data_Input/Data_Input.html
Original file line number Diff line number Diff line change
Expand Up @@ -181,13 +181,7 @@ <h1 data-config-title><!-- populated from slide_config.json --></h1>

<p>This course will involve moving files around on your computer and downloading files.</p>

<p>If you are new to this - check out these videos.</p>

<p>If you have a PC: <a href='https://youtu.be/we6vwB7DsNU' title=''>https://youtu.be/we6vwB7DsNU</a></p>

<p>If you have a Mac: <a href='https://www.youtube.com/watch?v=Ao9e0cDzMrE' title=''>https://www.youtube.com/watch?v=Ao9e0cDzMrE</a></p>

<p>You can find these on the resource page of the website.</p>
<p>If you are new to this - check out the videos on the resource page of the website.</p>

</article></slide><slide class="segue dark nobackground level1"><hgroup class = 'auto-fadein'><h2>R Projects</h2></hgroup><article id="r-projects">

Expand Down
12 changes: 4 additions & 8 deletions modules/Intro/Intro.html

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions modules/RStudio/RStudio.html

Large diffs are not rendered by default.

0 comments on commit 676261d

Please sign in to comment.