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 cef0df7 commit 9ef698e
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 14 deletions.
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] 906 233 350 336 360</code></pre>
<pre><code>## [1] 250 380 444 1054 350</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] 907 234 351 337 361</code></pre>
<pre><code>## [1] 251 381 445 1055 351</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] 907 234 351 337 361</code></pre>
<pre><code>## [1] 251 381 445 1055 351</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] 908 235 352 338 362</code></pre>
<pre><code>## [1] 252 382 446 1056 352</code></pre>
<hr />
</div>
<div id="error-unexpected-in-error-unexpected-in-error-unexpected-x-in" class="section level2">
Expand Down
6 changes: 4 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -310,13 +310,15 @@ <h2>Format</h2>
<hr />
<div id="online-course" class="section level4">
<h4>Online course</h4>
<p><em>June 2026</em> <em>10:30am - 2pm Pacific Time</em></p>
<p><em>June 2026</em><br />
<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>June 2026</em> <em>9:30am - 4pm Pacific Time</em></p>
<p><em>June 2026</em><br />
<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 Down
16 changes: 10 additions & 6 deletions modules/Data_Input/Data_Input.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion modules/Data_Input/lab/Data_Input_Lab.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Preview the data by examining the Environment. How many observations and variabl

### P.1

Download the data and move the file to your project folder. Import the data by browsing for the file on your computer.
Download the data from https://daseh.org/data/CalEnviroScreen_data.csv and move the file to your project folder. Import the data by browsing for the file on your computer.

> *Download the data*
> *Put data in the project folder*
Expand Down
2 changes: 1 addition & 1 deletion modules/Data_Input/lab/Data_Input_Lab_Key.html
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ <h3>1.5</h3>
<h1>Practice on Your Own!</h1>
<div id="p.1" class="section level3">
<h3>P.1</h3>
<p>Download the data and move the file to your project folder. Import the data by browsing for the file on your computer.</p>
<p>Download the data from <a href="https://daseh.org/data/CalEnviroScreen_data.csv" class="uri">https://daseh.org/data/CalEnviroScreen_data.csv</a> and move the file to your project folder. Import the data by browsing for the file on your computer.</p>
<blockquote>
<p><em>Download the data</em> <em>Put data in the project folder</em> File, Import Dataset, From Text (<code>readr</code>) browse for the file click “Update” and “Import”</p>
</blockquote>
Expand Down

0 comments on commit 9ef698e

Please sign in to comment.