在R中输出单独的屏幕?

时间:2014-01-18 07:55:43

标签: r rstudio sink

我正在为我的项目使用RStudio,我想要一个单独的输出屏幕。我尝试使用sink(),但我需要一个新的弹出窗口。我的代码是

vd<-data.frame()
vd<-c("V1","V2")
vf<-length(vd)
i<-1
while(i<=vf){
vd<-c("V1","V2")
#print(vd)
leng<-length(vd)
selectru<-combn(vd,leng)
#print(selectru)
print(selectru[i])
fst<-selectru[i]
select<-data.frame()
select<-selectru[selectru[,1]!=selectru[i],]
m<-length(select)
select<-combn(select,m)
snd <-apply(select,2,function(rows) paste0(rows, collapse = ""))
cat(sprintf("\"%s\" =>\"%s\"\n", fst,snd))
i<-i+1
}

这些数据不是实际数据,只是示例数据。

是否可以在单独的屏幕或浏览器窗口中显示输出“ONLY”?无需显示任何图形或绘图操作。

1 个答案:

答案 0 :(得分:6)

根据我的评论,这是使用rite中的sinkstart函数的示例。

代码:

library(rite)
sinkstart(echo=FALSE)
# your code
# close the widget with the X or
# use `sinkstop()` to turn off the `sink`ing

以下是截图:

enter image description here