@@ -139,7 +139,7 @@ in R.
139
139
140
140
Beyond files stored on your computer (i.e., locally), we also need a way to locate resources
141
141
stored elsewhere on the internet (i.e., remotely). For this purpose we use a * Uniform Resource Locator (URL)* ,
142
- i.e., a web address that looks something like ` https://datasciencebook.ca/ . \index{URL}
142
+ i.e., a web address that looks something like https://datasciencebook.ca/ . \index{URL}
143
143
URLs indicate the location of a resource on the internet and
144
144
help us retrieve that resource.
145
145
@@ -168,12 +168,7 @@ language data from the 2016 Canadian census. \index{Canadian languages!canlang d
168
168
We put ` data/ ` before the file's
169
169
name when we are loading the data set because this data set is located in a
170
170
sub-folder, named ` data ` , relative to where we are running our R code.
171
-
172
- Here is what the file would look like in a plain text editor.
173
-
174
- > ** Note:** A plain text editor is a program that enables you to edit plain text.
175
- > Plain text is text data that has no additional formatting
176
- > (e.g., bold, italics, line spacing, fonts, font sizes, and embedded images).
171
+ Here is what the text in the file ` data/can_lang.csv ` looks like.
177
172
178
173
``` code
179
174
category,language,mother_tongue,most_at_home,most_at_work,lang_known
@@ -354,7 +349,7 @@ specify that there are no column names to assign, and give it the value of
354
349
> ** Note:** ` \t ` is an example of an * escaped character* ,
355
350
> which always starts with a backslash (` \ ` ). \index{escape character}
356
351
> Escaped characters are used to represent non-printing characters
357
- > (like the tab) or characters with special meanings (such as quotation marks).
352
+ > (like the tab) or those with special meanings (such as quotation marks).
358
353
359
354
``` {r}
360
355
canlang_data <- read_delim("data/can_lang.tsv",
0 commit comments