I am new to R program.
I have a lot of files in the environment, x1,x2,x3.....x1279.
How do I remove all the x files?
I used to use GrADs, where I can simply remove the files using asterik *
Is there a similar function in R? Do I have to use a while loop?
eg.
n<-1
while(n<1279){
remove(x*,n)
n<-n+1
}
Thanks!