I have about 50 unique data frames with the same column names.
Right now I have something like this:
df1_cleaned <- df1$price
df1_cleaned <- df1$date
df2_cleaned <- df2$price
df2_cleaned <- df2$date
...
There are 10 columns in the uncleaned data frames, I'm only interested in getting the 3rd and 5th columns of each.
Is there a way to do this without writing out every single data frame?
Cheers