RStudio makes every call I make twice

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?

+4
source share
1 answer

It also happened to me. Each time I opened RStudio, I had to close the current project and open it again to run the code twice.

, , answer, , RStudio.

+1

Source: https://habr.com/ru/post/1544815/


All Articles