1

我使用保存文件Tinn R并尝试在猖獗的逻辑 postscript 查看器 1.1 中打开它,但它在 word pad 中打开。我无法理解这个问题。我的代码如下

library(MASS)
attach(cats)
#print(cats)
#names(cats)
#summary(cats)
postscript("asd.ps",horizontal=F)
par(mfrow=c(2,2))
boxplot(cats[,2:3])
plot(Bwt,Hwt)
4

1 回答 1

2

您需要在 R 完成文件之前(甚至在设备上绘制之前)关闭设备,例如

postscript("asd.ps", horizontal=FALSE)
op <- par(mfrow=c(2,2))
boxplot(cats[,2:3])
plot(Bwt, Hwt)
par(op)
dev.off() ## close the device

处理完此问题后,请确保.ps文件与 Rampant Logic 查看器相关联,而不是与写字板相关联。IIRC,.ps默认由写字板处理(至少他们在我上次使用 Windows 时是这样做的......)

于 2013-04-27T15:56:23.377 回答