From 1d3829ea4ae692b532c04c26d448e3e4cbddad80 Mon Sep 17 00:00:00 2001 From: Jonathan Kitt <70012823+johnkitt85@users.noreply.github.com> Date: Tue, 1 Sep 2020 14:45:23 +0200 Subject: [PATCH] Fixed typo --- 02-intro2R.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-intro2R.Rmd b/02-intro2R.Rmd index 0b8f7bc..9e6d5b8 100644 --- a/02-intro2R.Rmd +++ b/02-intro2R.Rmd @@ -209,7 +209,7 @@ y+2 #scalar addition 2*y #scalar multiplication y^2 #raise each component to the second power 2^y #raise 2 to the first through fifth power -y #y itself has not been unchanged +y #y itself is unchanged y<-y*2 y #it is now changed r1<-rep(1,3) # create a vector of 1s, length 3