I have many dataframes that I would like to run though a code. Is there a way to change the dataframe name in a loop?
df01$x = rnorm(100)
df02$x = rnorm(100)+2
df03$x = rnorm(100)*2
dflist <- c("df01", 
            "df02",
            "df03")
for (i in 1:length(dflist){
  {
    #complete tasks by changing df name in existing code
    ifelse([[i]]$x > 0,1,[[i]]$x)
}
#I want to do this for a  number of different fuctions, so it is best to change the df name before "$"
    df[[i]]$Varible = aggregate(df$Varible, .. ,..)}
 
    