saving . . . saved list of all data frames created by us other than default ones has been deleted. list of all data frames created by us other than default ones has been hidden .
list of all data frames created by us other than default ones
Title
Question
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 12-05-20, 11:38 a.m. shwetagandhi

Answers:

In order to get the list of user-defined data frames/variables, please type ls() in the Console window and press Enter
12-05-20, 1:50 p.m. sudhakarst
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: 
https://stackoverflow.com/questions/25509879/how-can-i-make-a-list-of-all-dataframes-that-are-in-my-global-environment
12-05-20, 2:06 p.m. sudhakarst

Login to add comment


Log-in to answer to this question.