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 Oct 8, 2024
1 parent b173d6d commit 99b7449
Show file tree
Hide file tree
Showing 4 changed files with 225 additions and 633 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] 600 465 407 202 360</code></pre>
<pre><code>## [1] 524 500 720 470 465</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] 601 466 408 203 361</code></pre>
<pre><code>## [1] 525 501 721 471 466</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] 601 466 408 203 361</code></pre>
<pre><code>## [1] 525 501 721 471 466</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] 602 467 409 204 362</code></pre>
<pre><code>## [1] 526 502 722 472 467</code></pre>
<hr />
</div>
<div id="error-unexpected-in-error-unexpected-in-error-unexpected-x-in" class="section level2">
Expand Down
387 changes: 91 additions & 296 deletions modules/Factors/lab/Factors_Lab.html

Large diffs are not rendered by default.

463 changes: 130 additions & 333 deletions modules/Factors/lab/Factors_Lab_Key.html

Large diffs are not rendered by default.

Binary file added modules/Factors/lab/ces_Ventura.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 99b7449

Please sign in to comment.