# A tibble: 12 x 3
x y z
<dbl> <int> <int>
1 1 1 2
2 3 2 3
3 2 3 4
4 3 4 5
5 2 5 6
6 4 6 7
7 5 7 8
8 2 8 9
9 1 9 10
10 1 10 11
11 3 11 12
12 4 12 13
以上名称为df。这是我要存储在其中的十个小工具之一。
t <- tibble(tbl=vector("list", 10))
如果我这样做:
t$tbl[1] <- df
或
t[1, 1] <- df
我收到此警告消息:
Warning message:
In t$tbl[1] <- df :
number of items to replace is not a multiple of replacement length
和
的输出t$tbl[1]
是
[[1]]
[1] 1 3 2 3 2 4 5 2 1 1 3 4