I have a list of objects, where each object is a dataframe.
list_of_dfs<-(df1, df2, df3,....)
Suppose I want to extract information from the first column of each dataframe, say suppose extract all values of column 1 which is above 0.5, how do I use a for loop to do that?
Complication: It might be that each dataframe is only a "name" in the list_of_dfs however running the name itself in the console e.g. '>df1' would generate dataframe information.
Thanks for your consideration and advice.