如何创建具有一列小标题或data.frames的小标题?

时间:2019-06-21 14:07:25

标签: r dataframe tibble

# 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

0 个答案:

没有答案