From 0c9eab23aec054a96670de2d4089f2333b2c6dc3 Mon Sep 17 00:00:00 2001 From: veverica-hrdzava Date: Sun, 24 Oct 2021 14:56:44 -0700 Subject: [PATCH 1/3] Error added. --- code/01-Structures.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/01-Structures.R b/code/01-Structures.R index 7337f9e..c0f1241 100644 --- a/code/01-Structures.R +++ b/code/01-Structures.R @@ -36,7 +36,7 @@ factorial(foo) foo rm(foo) -foo +#foo pi pi <- 1 @@ -81,7 +81,7 @@ class(0.00001) "hello" class("hello") -"hello" + "world" +#"hello" + "world" nchar("hello") paste("hello", "world") From 023d6c82acaff6d92d12a2dab84b05b8a5a954c2 Mon Sep 17 00:00:00 2001 From: veverica-hrdzava Date: Sun, 24 Oct 2021 18:58:51 -0700 Subject: [PATCH 2/3] Error should be added now --- code/01-Structures.R | 1 + 1 file changed, 1 insertion(+) diff --git a/code/01-Structures.R b/code/01-Structures.R index c0f1241..c740d5a 100644 --- a/code/01-Structures.R +++ b/code/01-Structures.R @@ -139,6 +139,7 @@ nvec nlst <- list(one = 1, two = 2, many = c(3, 4, 5)) nlst +nvec = nvec - nlst ndf <- data.frame(numbers = c(1, 2, 3), letters = c("R","S","T"), From 82ef58a39a2b91258d1da1780ffbaaa07ff2fbcd Mon Sep 17 00:00:00 2001 From: CMichelleA Date: Sun, 24 Oct 2021 21:06:44 -0700 Subject: [PATCH 3/3] Update 01-Structures.R --- code/01-Structures.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/01-Structures.R b/code/01-Structures.R index c740d5a..e1d1811 100644 --- a/code/01-Structures.R +++ b/code/01-Structures.R @@ -139,7 +139,7 @@ nvec nlst <- list(one = 1, two = 2, many = c(3, 4, 5)) nlst -nvec = nvec - nlst +#removed info that was here ndf <- data.frame(numbers = c(1, 2, 3), letters = c("R","S","T"),