What is this expression doing in R code?

I don’t know anything about R, when I read the R-code, the very first line appears

rm(list=ls())

What does it mean? Thanks

+3
source share
1 answer

ls()in R are the active variables and rm(list=ls())removes all active variables.

+4
source

Source: https://habr.com/ru/post/1762070/


All Articles