RStudio suddenly stopped showing plots in the plot pane

后端 未结 8 1266
一生所求
一生所求 2021-02-04 03:59

RStudio is not showing the generated plots in the plot pane anymore. Instead they open in a separate file with the name "Quartz". Here\'s my session info.:



        
8条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-04 04:37

    Follow below procedure to resolve the issue.

    dev.off()
    print(plot(1)) # Basically use print command once
    

    now use plot command as you normally use and should work fine.

提交回复
热议问题