In R ,this are object_a/object_b
, i want to remove them from R environment ,
but rm(c('object_a','object_b'))
can't work. Anyone can help? Thanks!
object_a <- c(1:3)
object_b <- c(1:6)
rm(c('object_a','object_b'))
In R ,this are object_a/object_b
, i want to remove them from R environment ,
but rm(c('object_a','object_b'))
can't work. Anyone can help? Thanks!
object_a <- c(1:3)
object_b <- c(1:6)
rm(c('object_a','object_b'))