我有采用以下形式的函数
myfun<-function(Year, ID, Species, Abundance, resamps) {do something}
“重新采样”表示重新采样,并且需要一个数字(例如20)
我可以毫无疑问地将该函数应用于数据框,因为它接受以下形式的数据:
<-myfun(mydata$Year, mydata$Bay, mydata$Species, mydata$Abundance, 20)
我需要将此功能应用于具有以下结构的列表
$ TX_ARAB:Classes ‘tbl_df’, ‘tbl’ and 'data.frame': 308670 obs. of 4 variables:
..$ Year : chr [1:308670] "1982" "1982" "1982" "1982" ...
..$ Bay : chr [1:308670] "TX_ARAB" "TX_ARAB" "TX_ARAB" "TX_ARAB" ...
..$ Species : chr [1:308670] "Anchoa mitchilli" "Brevoortia patronus" "Dorosoma cepedianum" "Leiostomus xanthurus" ...
..$ Abundance: num [1:308670] 1 243 1 24 3 6 26 6 1 1 ...
$ TX_COCB:Classes ‘tbl_df’, ‘tbl’ and 'data.frame': 344467 obs. of 4 variables:
..$ Year : chr [1:344467] "1982" "1982" "1982" "1982" ...
..$ Bay : chr [1:344467] "TX_COCB" "TX_COCB" "TX_COCB" "TX_COCB" ...
..$ Species : chr [1:344467] "Anchoa mitchilli" "Micropogonias undulatus" "Ariopsis felis" "Archosargus probatocephalus" ...
..$ Abundance: num [1:344467] 6 17 10 1 16 3 2 42 1 11 ...
当我这样做的时候它没用也就不足为奇了
d = lapply(mylist, myfun, resamps = 20)
鉴于将数据名称应用于数据框时必须将数据名称与对象一起传递,因此我不知道如何使用该函数来相应地使用列表中的相关对象。