How to use multiples objects in a function on R

60 Views Asked by At

I'm completely new in programing so as i'm in R. I have multiples objects with similar names (ams.1,ams.2,ams.3, etc) and i would like to run a function (it's the function "crop" from a package) with them and then assign new objects (data.final.1, data.final.2) to the result. Just like that:

for(x in 1:119) {
 assign(paste("data.final", x, sep = "."),crop(a,ams.(x)))
}

Apparently this is not working. Any ideas?

0

There are 0 best solutions below