I know nothing about R, when I read a R code, in the very first line, there appears
rm(list=ls())
What does it mean? Thanks
I know nothing about R, when I read a R code, in the very first line, there appears
rm(list=ls())
What does it mean? Thanks
ls() in R lists the active variables and rm(list=ls()) will remove all the active variables.