赞
踩
append() | 进行元素的追加 |
- list1 <- list(1,2) %>%
- print()
- list1 <- list(3,4) %>% #如果直接加,就会覆盖
- print()
- list1 <- append(list1,c(5,6)) %>% # 使用append()就能在其后追加,而不是覆盖了
- print()
- > list1 <- list(1,2) %>%
- + print()
- [[1]]
- [1] 1
-
- [[2]]
- [1] 2
-
- > list1 <- list(3,4) %>% #如果直接加,就会覆盖
- + print()
- [[1]]
- [1] 3
-
- [[2]]
- [1] 4
-
- > list1 <- append(list1,c(5,6)) %>% # 使用append()就能在其后追加,而不是覆盖了
- + print()
- [[1]]
- [1] 3
-
- [[2]]
- [1] 4
-
- [[3]]
- [1] 5
-
- [[4]]
- [1] 6
-
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。