The ________ function in R is used to remove variables or objects from the memory.

  • None of the above
  • del()
  • remove()
  • rm()
The rm() function in R is used to remove objects from memory. For example, if you have a variable named 'x' and you no longer need it, you could use 'rm(x)' to free up the memory that 'x' was using.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *