セクション 1. 章 10
single
Challenge: List-Columns
メニューを表示するにはスワイプしてください
タスク
スワイプしてコーディングを開始
Practice working with list-columns in tibbles. In this task, you will create a tibble with a list-column, extract elements from the list-column, and unnest the data.
- Create a tibble with two columns:
id(containing the values 1, 2, 3) andnumbers(a list-column, where each row contains a numeric vector:c(1, 2, 3),c(4, 5), andc(6)respectively). - Implement a function that takes this tibble and returns a vector containing the first element from each list in the
numberscolumn. - Implement a function that unnests the
numberscolumn so that each value in the list-column becomes its own row, duplicating the correspondingidvalue as needed.
解答
すべて明確でしたか?
フィードバックありがとうございます!
セクション 1. 章 10
single
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください