From 8ecbf4ee2fc7c51c7bce96a4902c699a15338748 Mon Sep 17 00:00:00 2001 From: 0solarfox0 Date: Fri, 25 Aug 2023 17:42:20 -0700 Subject: [PATCH] Update typo in data-import.qmd (#1570) "There are two main alternative:" added an "s" --- data-import.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-import.qmd b/data-import.qmd index 4f97b92..db74fdc 100644 --- a/data-import.qmd +++ b/data-import.qmd @@ -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.