I would like to apply the same operation to multiple data frames in \'R\' but cannot get how to deal with this matter.
This is an example of pipe
operat
is it good for you ?
library(dplyr)
#matrices replication
iris1=iris
iris2=iris
iris3=iris
#list of combinations: apply is tricky for array input
irises=matrix(c("iris1","iris2","iris3"), ncol=1)
#function design
Funct<-function(df_name){
df=get(df_name)
df %>% mutate(Sepal=rowSums(select(.,starts_with("Sepal"))),
Length=rowSums(select(.,ends_with("Length"))),
Width=rowSums(select(.,ends_with("Width"))))
}
apply(irises,MARGIN=2, Funct)