From afa7c5f53bc3b3fe89f56379d6ce8571744ecfe7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yvonne=20Fr=C3=B6hlich?= <94163266+yvonnefroehlich@users.noreply.github.com> Date: Wed, 25 Oct 2023 22:06:23 +0200 Subject: [PATCH] Use once singluar (#1587) --- spreadsheets.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spreadsheets.qmd b/spreadsheets.qmd index 26ddad0..cde54c2 100644 --- a/spreadsheets.qmd +++ b/spreadsheets.qmd @@ -498,7 +498,7 @@ A good way of familiarizing yourself with the coding style used in a new package 4. Recreate the `bake_sale` data frame, write it out to an Excel file using the `write.xlsx()` function from the openxlsx package. -5. In @sec-data-import you learned about the `janitor::clean_names()` function to turn columns names into snake case. +5. In @sec-data-import you learned about the `janitor::clean_names()` function to turn column names into snake case. Read the `students.xlsx` file that we introduced earlier in this section and use this function to "clean" the column names. 6. What happens if you try to read in a file with `.xlsx` extension with `read_xls()`?