Removing Items

By now, we have quite a few objects in our R environment that aren’t being used. The remove() command does exactly that….removes objects from the R environment. This helps for making things nice and tidy, specifically in our environment window.

remove(frogfull, froginner, enviro_filter) # Removes all three objects we just generated

Use this in the console to “one off” remove an item.

… that’s all, NEXT!