Each time I run a line in RStudio, either using control-enter in the script code, or making a call in the console (even as simple as x = 2), the call is made twice - a simple example
> x = 2
> x = 2
> x
[1] 2
> x
[1] 2
Where I just called x = 2, then x.
Actually this does not cause any problems for me, but it is just annoying. Any ideas?
source
share