Answers for "Remove specific data frames from R"

0

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"
Posted by: Guest on January-17-2022

Browse Popular Code Answers by Language