summaryrefslogtreecommitdiffhomepage
path: root/r.html.markdown
diff options
context:
space:
mode:
authorLubomír Sedlář <lubomir.sedlar@gmail.com>2013-07-01 17:40:06 +0200
committerLubomír Sedlář <lubomir.sedlar@gmail.com>2013-07-01 17:40:06 +0200
commit71f465ace674b595f03e9495ea04ed63c3730427 (patch)
tree6714ff5a39f8cf037b07315b4d003fb9703051fb /r.html.markdown
parent2431545594963be4a79a2d4fbc79277fb30fef3b (diff)
Fix typos in R tutorial
Diffstat (limited to 'r.html.markdown')
-rw-r--r--r.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/r.html.markdown b/r.html.markdown
index f68ede0e..38317776 100644
--- a/r.html.markdown
+++ b/r.html.markdown
@@ -130,7 +130,7 @@ vec <- c(4, 5, 6, 7)
vec # => [1] 4 5 6 7
# The class of a vector is the class of its components
class(vec) # => [1] "numeric"
-# If you vectorize items of different classes, weird coersions happen
+# If you vectorize items of different classes, weird coercions happen
c(TRUE, 4) # => [1] 1 4
c("dog", TRUE, 4) # => [1] "dog" "TRUE" "4"
@@ -192,7 +192,7 @@ mat3
# [,1] [,2] [,3] [,4]
# [1,] 1 2 4 5
# [2,] 6 7 0 4
-# Aah, everything of the same class. No coersions. Much better.
+# Aah, everything of the same class. No coercions. Much better.
# TWO-DIMENSIONAL (DIFFERENT CLASSES)
@@ -273,7 +273,7 @@ apply(mat, MAR = 2, myFunc)
# [2,] 7 19
# [3,] 11 23
# Other functions: ?lapply, ?sapply
-# Don't feel too intimiated; everyone agrees they are rather confusing
+# Don't feel too intimidated; everyone agrees they are rather confusing
# The plyr package aims to replace (and improve upon!) the *apply() family.