How can you remove a variable from the workspace in R?

How can you remove a variable from the workspace in R?

a) delete()
b) remove()
c) rm()
d) clear()

Answer:

c) rm()

Explanation:

The rm() function in R is used to remove variables from the workspace or environment.

Scroll to Top