From 23fe544e0c272faaa2628b4edb0f05d68ba2dbfb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 9 Oct 2024 17:21:45 +0000 Subject: [PATCH] Render site --- help.html | 8 +- modules/Statistics/lab/Statistics_Lab.html | 438 ++++++--------------- 2 files changed, 132 insertions(+), 314 deletions(-) diff --git a/help.html b/help.html index 61e2f80b..c5d28c73 100644 --- a/help.html +++ b/help.html @@ -353,14 +353,14 @@

Why are my changes not taking effect? It’s making my results look

Here we are creating a new object from an existing one:

new_rivers <- sample(rivers, 5)
 new_rivers
-
## [1] 2348  600  444  981  338
+
## [1]  230  202  610 1270  460

Using just this will only print the result and not actually change new_rivers:

new_rivers + 1
-
## [1] 2349  601  445  982  339
+
## [1]  231  203  611 1271  461

If we want to modify new_rivers and save that modified version, then we need to reassign new_rivers like so:

new_rivers <- new_rivers + 1
 new_rivers
-
## [1] 2349  601  445  982  339
+
## [1]  231  203  611 1271  461

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.


@@ -409,7 +409,7 @@

Error: object ‘X’ not found

Make sure you run something like this, with the <- operator:

rivers2 <- new_rivers + 1
 rivers2
-
## [1] 2350  602  446  983  340
+
## [1]  232  204  612 1272  462

diff --git a/modules/Statistics/lab/Statistics_Lab.html b/modules/Statistics/lab/Statistics_Lab.html index b9b82efb..f3daba5c 100644 --- a/modules/Statistics/lab/Statistics_Lab.html +++ b/modules/Statistics/lab/Statistics_Lab.html @@ -13,228 +13,34 @@ Statistics Lab - - + + - - - - + + + + - - + h1.title {font-size: 38px;} + h2 {font-size: 30px;} + h3 {font-size: 24px;} + h4 {font-size: 18px;} + h5 {font-size: 16px;} + h6 {font-size: 12px;} + code {color: inherit; background-color: rgba(0, 0, 0, 0.04);} + pre:not([class]) { background-color: white } + + + code{white-space: pre-wrap;} + span.smallcaps{font-variant: small-caps;} + span.underline{text-decoration: underline;} + div.column{display: inline-block; vertical-align: top; width: 50%;} + div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;} + ul.task-list{list-style: none;} +