I feel as if constantly in R, I get weird naming conflicts between attached dataframes and other objects, attaches/detaches not working as expected (just had two copies of t
It is better to use a new environment for a series of data. For example, I normally create an e environment with this command.
e <- new.env()
Then you can access the individuals in the environment with e$your_var.
The other benefit:
eapply on the element of environment.