I can see that variable names in R can also be named by starting with ".".
For example, .data, .height, etc.,
But these variables are not getting listed in global variables, and also it is not possible to delete the variable by rm().
For example, rm(.data), rm(.height), etc.,
Where such variables are getting stored exactly? What is the lifecycle of those variables? Is there any use-case?