Update typo in data-import.qmd (#1570)

"There are two main alternative:"

added an "s"
This commit is contained in:
0solarfox0 2023-08-25 17:42:20 -07:00 committed by GitHub
parent b95d846283
commit 8ecbf4ee2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -463,7 +463,7 @@ read_csv("students-2.csv")
```
This makes CSVs a little unreliable for caching interim results---you need to recreate the column specification every time you load in.
There are two main alternative:
There are two main alternatives:
1. `write_rds()` and `read_rds()` are uniform wrappers around the base functions `readRDS()` and `saveRDS()`.
These store data in R's custom binary format called RDS.