Every time I execute a line in RStudio, either by using control-enter in the script code or by making a call in the console (even as simple as x = 2
), the call is made twice - simple example:
> x = 2
> x = 2
> x
[1] 2
> x
[1] 2
Where I only called x = 2
and then x
.
This isn't really causing any problems for me yet, but it's just kind of annoying. Any ideas?