list of all data frames created by us other than default ones
using the command data() we are only getting list of inbuilt data frames. can we also get the list of data frames created by us saved in the R environment? since there are so many names of objects and we just want to check out the list of data frames.
R Introduction-to-Data-Frames-in-R 11-12 min 0-10 sec
Answers:
In order to get the list of user-defined data frames/variables, please type ls() in the Console window and press Enter.
But that gives list of all objects like matrix and all but in case we want only data frames then is there any command?
12-05-20, 2:02 p.m.
shwetagandhi
You can try running list.files(pattern = ".csv") in the Console window. For more information, please visit here:
12-05-20, 2:06 p.m.
sudhakarst
https://stackoverflow.com/questions/25509879/how-can-i-make-a-list-of-all-dataframes-that-are-in-my-global-environment