In R the objects of the list itself [1], [2] and [[3]] can't seem to be renamed. See:
my_df1 <- mtcars[1:10,]
my_df1 <- mtcars[11:20,]
my_df1 <- mtcars[21:30,]
my_list <- list(my_df1, my_df2, my_df3)
Is there a way to rename the [1] objects themselves? I find this a drawback of R. I am dealing with categories of data and want to be sure which category I am dealing with by labelling each object. Thanks