Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR R

Remove specific data frames from R

#list all objects in current R workspace
ls()

[1] "df1" "df2" "df3" "x"

#remove df1 and df2
rm("df1", "df2")

#list all objects in workspace
ls()

[1] "df3" "x"
Source by www.statology.org #
 
PREVIOUS NEXT
Tagged: #Remove #specific #data #frames #R
ADD COMMENT
Topic
Name
9+5 =