Skip to content

Commit 629b200

Browse files
authored
Fix typo in Data Structures Part 1
The `read.csv` function was used in the code block, however it was incorrectly referred to as `read.table`. I have changed the reference from `read.table` to `read.csv` to reflect the correct name of the function used in the code.
1 parent a486734 commit 629b200

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

episodes/04-data-structures-part1.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ cats <- read.csv(file = "data/feline-data.csv")
7474
cats
7575
```
7676

77-
The `read.table` function is used for reading in tabular data stored in a text
77+
The `read.csv` function is used for reading in tabular data stored in a text
7878
file where the columns of data are separated by punctuation characters such as
7979
CSV files (csv = comma-separated values). Tabs and commas are the most common
8080
punctuation characters used to separate or delimit data points in csv files.

0 commit comments

Comments
 (0)