我在Windows中使用Rstudio。没有红八角形可供我点击。我已经尝试在控制台中按ESC和Ctrl + C以及Ctrl + Z,但这些都没有奏效。
答案 0 :(得分:1)
运行代码时,红色八边形只会在工作时显示。因此,虽然它只是运行您编写的代码(读取数据和事物的名称等),但八边形将不会显示。
按下ESC
将起作用,除非Rstudio被冻结。
答案 1 :(得分:0)
您也可以尝试通过菜单中断/终止R会话:
Session
-> Interrupt R
或
Session
-> Terminate R...
或
Session
-> Restart R
(Ctrl + Shift + F10)
如果没有其他帮助,请打开Windows命令行并杀死rsession.exe
过程:
> tasklist | grep rsession
# the output should be something like this:
rsession.exe 7260 Console 1 166,144 K
# The number (7260 in this case; will probably be different) is the process id (PID),
# and you can use it to kill the process:
> taskkill /F /PID 7260
警告:这将强制停止R会话,并且RStudio可能必须重新启动(至少这是在我的计算机上发生的情况。)