From aa2f2562e061e24debbbacef011c254d8faf53dd Mon Sep 17 00:00:00 2001 From: Hugo Gruson Date: Sat, 30 Dec 2023 10:28:35 +0000 Subject: [PATCH] Fix file name in intro text --- episodes/11-supp-read-write-csv.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/11-supp-read-write-csv.Rmd b/episodes/11-supp-read-write-csv.Rmd index aa49f8b6..48077b31 100644 --- a/episodes/11-supp-read-write-csv.Rmd +++ b/episodes/11-supp-read-write-csv.Rmd @@ -31,7 +31,7 @@ and explore the [arguments](../learners/reference.md#argument) that allow you re ### Read a .csv and Explore the Arguments -Let's start by opening a .csv file containing information on the speeds at which cars of different colors were clocked in 45 mph zones in the four-corners states (`CarSpeeds.csv`). We will use the built in `read.csv(...)` [function call](../learners/reference.md#function-call), which reads the data in as a data frame, and assign the data frame to a variable (using `<-`) so that it is stored in R's memory. Then we will explore some of the basic arguments that can be supplied to the function. First, open the RStudio project containing the scripts and data you were working on in episode 'Analyzing Patient Data'. +Let's start by opening a .csv file containing information on the speeds at which cars of different colors were clocked in 45 mph zones in the four-corners states (`car-speeds.csv`). We will use the built in `read.csv(...)` [function call](../learners/reference.md#function-call), which reads the data in as a data frame, and assign the data frame to a variable (using `<-`) so that it is stored in R's memory. Then we will explore some of the basic arguments that can be supplied to the function. First, open the RStudio project containing the scripts and data you were working on in episode 'Analyzing Patient Data'. ```{r readData} # Import the data and look at the first six rows