I am trying to change the name of dataset by using loop but it did not work. Below is my code:
for ( i in 6) {
nam<-paste("CAT", i,sep=".")
assign(nam, data_out[i])
}
Only "CAT.6" was assigned to the data set. What about others i ?
Many thanks in advance !
Regards, Bartek