problems looping with fastLink

前端 未结 1 518
挽巷
挽巷 2021-01-29 01:33

First of all, sorry for my English, I\'m translating with google translator

I have two df to which I apply fastLink

df1<-data.frame(col1=c("pruebaA         


        
相关标签:
1条回答
  • 2021-01-29 02:16

    Assuming you have objects called pruebaA_df1, pruebaA_df2 .... pruebaA_df1000 in your environment, you can use Reduce as :

    result <- Reduce(prueba, mget(paste0('pruebaA_df', 1:1000)))
    
    0 讨论(0)
提交回复
热议问题