- R Programming Fundamentals
- Kaelen Medeiros
- 272字
- 2021-07-23 16:58:21
Lists
A list is different from a vector because it can hold many different types of R objects inside it, including other lists. If you have experience programming in another language, you may be familiar with lists, but if not, don't worry! You can create a list in R using the list() function, as shown in the following example:
L1 <- list(1, "2", "Hello", "cat", 12, list(1, 2, 3))
Let's walk through the elements of this list. First, we have the number 1. Then, a character string, "2", followed by the character string "Hello", the character string "cat", the number 12, and then a nested list, which contains the numbers 1, 2, and 3.
Accessing these different parts of the list that we just created is slightly different—now, you are using list indexing, which means using double square brackets to look at the different items.
You'll need to enter L1[[1]] to view the number 1 and L1[[4]] to see "cat".
To get inside the nested list, you'll have to use L1[[6]][1] to see the number 1. L1[[6]] gets us to the nested list, located at position 6, and L1[[6]][1] allows us to access the first element of the nested list, in this case, number 1. The following screenshot shows the output of this code:

Lists can also be changed into other data structures. We could turn a list into a dataframe, but this particular list, because it contains a nested list, will not coerce to a vector. The following code demonstrates this:
L1_df <- as.data.frame(L1)
class(L1_df)
L1_vec <- as.vector(L1)
class(L1_vec)
The following screenshot shows the output of this code:

- 電氣自動化專業英語(第3版)
- OpenStack for Architects
- 數據庫原理與應用技術學習指導
- 機艙監測與主機遙控
- 大學計算機應用基礎
- 塊數據5.0:數據社會學的理論與方法
- Deep Reinforcement Learning Hands-On
- 深度學習與目標檢測
- Mastering GitLab 12
- 電氣控制與PLC原理及應用(歐姆龍機型)
- 貫通開源Web圖形與報表技術全集
- 工業機器人集成應用
- 項目實踐精解:C#核心技術應用開發
- FANUC工業機器人虛擬仿真教程
- Appcelerator Titanium Smartphone App Development Cookbook(Second Edition)