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 Jun 24, 2024
1 parent f5177f4 commit ea3a7c6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/module_details/day9.html
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ <h2>Material</h2>
9</a></td>
<td align="center">Functions</td>
<td align="center"><a href="../../modules/Functions/Functions.html">HTML</a>, <a href="../../modules/Functions/Functions.pdf">PDF</a></td>
<td align="center"><a href="../../modules/Functions/index.Rmd">Rmd</a></td>
<td align="center"><a href="../../modules/Functions/Functions.Rmd">Rmd</a></td>
<td align="center"><a href="../../modules/Functions/lab/Functions_Lab.Rmd">Lab</a>, <a href="../../modules/Functions/lab/Functions_Lab_Key.Rmd">Key</a>, <a href="../../modules/Functions/lab/Functions_Lab_Key.html">Key
HTML</a></td>
<td align="center"><a href="../../modules/cheatsheets/Day-9.pdf">Day 9
Expand Down
8 changes: 4 additions & 4 deletions help.html
Original file line number Diff line number Diff line change
Expand Up @@ -405,16 +405,16 @@ <h2><strong>Why are my changes not taking effect? It’s making my results
<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] 710 600 280 286 460</code></pre>
<pre><code>## [1] 315 350 332 210 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] 711 601 281 287 461</code></pre>
<pre><code>## [1] 316 351 333 211 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] 711 601 281 287 461</code></pre>
<pre><code>## [1] 316 351 333 211 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>
Expand Down Expand Up @@ -484,7 +484,7 @@ <h2><strong>Error: object ‘X’ not found</strong></h2>
operator:</p>
<pre class="r"><code>rivers2 &lt;- new_rivers + 1
rivers2</code></pre>
<pre><code>## [1] 712 602 282 288 462</code></pre>
<pre><code>## [1] 317 352 334 212 352</code></pre>
<hr />
</div>
<div id="error-unexpected-in-error-unexpected-in-error-unexpected-x-in"
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ <h2>Find an Error!?</h2>
associated with the class: <a
href="https://github.com/jhudsl/intro_to_r"
class="uri">https://github.com/jhudsl/intro_to_r</a></p>
<p>This page was last updated on 2024-06-17.</p>
<p>This page was last updated on 2024-06-24.</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>
Expand Down
3 changes: 2 additions & 1 deletion materials_schedule.html
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,8 @@ <h2>Detailed Schedule + Materials</h2>
<td align="center">Functions</td>
<td align="center"><a href="modules/Functions/Functions.html">HTML</a>,
<a href="modules/Functions/Functions.pdf">PDF</a></td>
<td align="center"><a href="modules/Functions/index.Rmd">Rmd</a></td>
<td align="center"><a
href="modules/Functions/Functions.Rmd">Rmd</a></td>
<td align="center"><a
href="modules/Functions/lab/Functions_Lab.Rmd">Lab</a>, <a
href="modules/Functions/lab/Functions_Lab_Key.Rmd">Key</a>, <a
Expand Down

0 comments on commit ea3a7c6

Please sign in to comment.