RStudio suddenly stopped showing plots in the plot pane

后端 未结 8 1269
一生所求
一生所求 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条回答
  •  闹比i
    闹比i (楼主)
    2021-02-04 04:48

    It could be because graphic device are already on .

    To find indices of open devices:

    dev.cur()
    

    To close devices:

    dev.off(i)
    

    where i is index of device to be switched off.

提交回复
热议问题