我在这里做错了什么?:
library(tidyverse)
calling_dataset <- tibble(filepath="xxx.csv")
testfunction1 <-
getdrugdata <- function(filepath){
print(filepath)
}
test1 <-调用数据集%>%
purrr :: pmap_df(list(
。$ filepath),testfunction1)
产生的错误是:错误:无法从闭合中拔出。
答案 0 :(得分:0)
更改调用:
purrr::pmap_df(list(calling_dataset$filepath), testfunction1)
订单已还原到Universe。