How to use multiples objects in a function on R -


i'm new in programing i'm in r. have multiples objects similar names (ams.1,ams.2,ams.3, etc) , run function (it's function "crop" package) them , assign new objects (data.final.1, data.final.2) result. that:

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

apparently not working. ideas?


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -