我想將圖的圖像保存爲png文件;但是它切斷了軸標籤。所以我試圖通過設置「omi」和「mar」來留下更大的餘地,但似乎並不奏效。添加更多像素也不起作用。 cex.lab的值越小,軸的可見性就越小,但不可小覷。R:omi和mar返回xlim-errors
可能的錯誤是愚蠢的,但我不出來...
png(filename = "CarTheftForeigners.png",
width = 1120, height = 646, units = "px", pointsize = 12,
bg = "white", res = NA, family = "", restoreConsole = TRUE,
type = c("windows", "cairo", "cairo-png")
)
plot(Table$Car.Theft,Table$Foreigners,
type="p", pch=20, col="red",
main="Correlation of the Rate of Car Theft and Rate of Foreigners", cex.main=2,
xlab="Rate of Car Thefts",
ylab="Rate of Foreigners", cex.lab=2,
par(omi=c(1,1,1,1)+0.1))
abline(reg=lm(Foreigners ~ Car.Theft, data=Table),col="blue")
dev.off()
無論我怎樣添加值OMI或損壞,我總是得到錯誤:
Fehler in plot.window(...) : ungültiger 'xlim' Wert
這是德語,意思是xlim-value無效。
謝謝你的幫助!
有點神祕的錯誤信息的原因是'plot'試圖將來自par(omi = c(1,1,1,1)+0.1)的值與第一個不匹配的參數值在'plot.default'的參數列表中,在這種情況下是'xlim'。 – 2013-05-06 20:02:43