我正在运行以下内容:
png(filename="figure.png", width=900, bg="white")
barplot(c(1.1, 0.8, 0.7), horiz=TRUE, border="blue", axes=FALSE, col="darkblue")
axis(2, at=1:3, lab=c("elephant", "hippo", "snorkel"), las=1, cex.axis=1.3)
dev.off()
并且左侧的标签显示在页面外。我似乎无法弄清楚如何解决它。有什么想法吗?
感谢。
答案 0 :(得分:19)
对于长标签,左边距没有留出足够的空间。尝试:
png(filename="figure.png", width=900, bg="white")
par(mar=c(5,6,4,1)+.1)
barplot(c(1.1, 0.8, 0.7), horiz=TRUE, border="blue", axes=FALSE, col="darkblue")
axis(2, at=1:3, lab=c("elephant", "hippo", "snorkel"), las=1, cex.axis=1.3)
dev.off()
'par'的'mar'参数按顺序设置边距的宽度:'bottom','left','top','right'。默认设置是将'left'设置为4,这里我将其更改为6。