In R when I assign a variable with a name starting with .
such as .a <- 3
, it does not appear in my environment in R Studio. However, when I run the variable .a
, it prints 3
to the console.
Why is the variable .a
not appearing in my environment but is still able to be accessed?