标签: 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
我做错了什么?