From 7d6212be9e058a01a9a3cfbf86377fad13457999 Mon Sep 17 00:00:00 2001 From: Michael Grund <23025878+michaelgrund@users.noreply.github.com> Date: Wed, 25 Oct 2023 15:29:31 +0200 Subject: [PATCH] Add missing word in section 24.6 (#1586) --- rectangling.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rectangling.qmd b/rectangling.qmd index 81c8a36..2ba86f4 100644 --- a/rectangling.qmd +++ b/rectangling.qmd @@ -738,7 +738,7 @@ df |> ## Summary -In this chapter, you learned what lists are, how you can generate them from JSON files, and how turn them into rectangular data frames. +In this chapter, you learned what lists are, how you can generate them from JSON files, and how to turn them into rectangular data frames. Surprisingly we only need two new functions: `unnest_longer()` to put list elements into rows and `unnest_wider()` to put list elements into columns. It doesn't matter how deeply nested the list-column is; all you need to do is repeatedly call these two functions.