Skip to content

Commit 9ef698e

Browse files
Render site
1 parent cef0df7 commit 9ef698e

File tree

5 files changed

+20
-14
lines changed

5 files changed

+20
-14
lines changed

help.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -353,14 +353,14 @@ <h2><strong>Why are my changes not taking effect? It’s making my results look
353353
<p>Here we are creating a new object from an existing one:</p>
354354
<pre class="r"><code>new_rivers &lt;- sample(rivers, 5)
355355
new_rivers</code></pre>
356-
<pre><code>## [1] 906 233 350 336 360</code></pre>
356+
<pre><code>## [1] 250 380 444 1054 350</code></pre>
357357
<p>Using just this will only print the result and not actually change <code>new_rivers</code>:</p>
358358
<pre class="r"><code>new_rivers + 1</code></pre>
359-
<pre><code>## [1] 907 234 351 337 361</code></pre>
359+
<pre><code>## [1] 251 381 445 1055 351</code></pre>
360360
<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>
361361
<pre class="r"><code>new_rivers &lt;- new_rivers + 1
362362
new_rivers</code></pre>
363-
<pre><code>## [1] 907 234 351 337 361</code></pre>
363+
<pre><code>## [1] 251 381 445 1055 351</code></pre>
364364
<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>
365365
<hr />
366366
</div>
@@ -409,7 +409,7 @@ <h2><strong>Error: object ‘X’ not found</strong></h2>
409409
<p>Make sure you run something like this, with the <code>&lt;-</code> operator:</p>
410410
<pre class="r"><code>rivers2 &lt;- new_rivers + 1
411411
rivers2</code></pre>
412-
<pre><code>## [1] 908 235 352 338 362</code></pre>
412+
<pre><code>## [1] 252 382 446 1056 352</code></pre>
413413
<hr />
414414
</div>
415415
<div id="error-unexpected-in-error-unexpected-in-error-unexpected-x-in" class="section level2">

index.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,13 +310,15 @@ <h2>Format</h2>
310310
<hr />
311311
<div id="online-course" class="section level4">
312312
<h4>Online course</h4>
313-
<p><em>June 2026</em> <em>10:30am - 2pm Pacific Time</em></p>
313+
<p><em>June 2026</em><br />
314+
<em>10:30am - 2pm Pacific Time</em></p>
314315
<p>Two-week online course in R programming foundations.</p>
315316
<p><br></p>
316317
</div>
317318
<div id="code-a-thon" class="section level4">
318319
<h4>Code-a-thon</h4>
319-
<p><em>June 2026</em> <em>9:30am - 4pm Pacific Time</em></p>
320+
<p><em>June 2026</em><br />
321+
<em>9:30am - 4pm Pacific Time</em></p>
320322
<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>
321323
<p><br></p>
322324
</div>

modules/Data_Input/Data_Input.html

Lines changed: 10 additions & 6 deletions
Large diffs are not rendered by default.

modules/Data_Input/lab/Data_Input_Lab.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Preview the data by examining the Environment. How many observations and variabl
6565

6666
### P.1
6767

68-
Download the data and move the file to your project folder. Import the data by browsing for the file on your computer.
68+
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.
6969

7070
> *Download the data*
7171
> *Put data in the project folder*

modules/Data_Input/lab/Data_Input_Lab_Key.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ <h3>1.5</h3>
228228
<h1>Practice on Your Own!</h1>
229229
<div id="p.1" class="section level3">
230230
<h3>P.1</h3>
231-
<p>Download the data and move the file to your project folder. Import the data by browsing for the file on your computer.</p>
231+
<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>
232232
<blockquote>
233233
<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>
234234
</blockquote>

0 commit comments

Comments
 (0)