purrr ::: map_df()给出绑定行错误

时间:2017-06-22 20:32:39

标签: r purrr

我想对两次填充进行抽样,并将结果存储在dataframe列中。如果我在R:

中运行此代码
population <- rnorm(10000, 3, 3)
map_df(1:2, ~ sample(population, 10), .id = c("a", "b"))

它给出了这个错误:

Error: .id is not a string

我做错了什么?

0 个答案:

没有答案