我的问题类似于帖子(R studio will occasionally stop returning to the console until I restart the program?)。但它没有回答我的问题。
以下是我的RStudio控制台中的情况:
> require(igraph)
Loading required package: igraph
> V(T)
Vertex sequence:
[1] 1 2 3 4
> debugSource('C:/current/CSC791/Week 9/P5/P5_kbansal.r')
Browse[1]> n
Browse[2]> c
Error: (list) object cannot be coerced to type 'logical'
> V(T)
>
所以,即使'>'光标到了(在类似的帖子中回答),我仍然无法看到变量(例如V(T))。
注意:这与脚本成功或错误无关。正如我面对同样的运行甚至R脚本没有任何错误。
感谢。
答案 0 :(得分:0)
也许尝试使用sink()将输出恢复到控制台。