0

当我减小图例的字体大小时,图例周围的框并没有随之减小,这意味着它看起来非常难看。

我使用以下代码:

barplot(transComp,space=c(0,2),legend.text=TRUE,beside=TRUE,horiz=TRUE,
col=c("red1","red4","green3"),
xlab="crimes per 100,000 inhabitants",
axes=TRUE, names.arg=colnamesbarplot, cex.names=0.5, las=1,
args.legend=list(cex=0.4,
x="bottomright"))

所以我的数据名称是“transComp”,每个条形组的名称取自“colnamesbarplot”。

使用omiandmar似乎不起作用,因为它们与标签周围的框无关?如果这很容易解决的话,我也可以完全没有盒子......

感谢您的任何帮助!

4

1 回答 1

0

正如@Dayne 建议的那样,通过将问题包含bty="n"在 list to中解决了这个问题。args.legend因此,代码现在看起来像

barplot(transComp,space=c(0,2),legend.text=TRUE,beside=TRUE,horiz=TRUE,
col=c("red1","red4","green3"), xlab="crimes per 100,000 inhabitants",
axes=TRUE, names.arg=colnamesbarplot, cex.names=0.5, las=1, args.legend=list(cex=0.4, 
x="bottomright", bty = "n"))

正如@DWNin 所建议的,我认为这个问题得到了回答,并且还将尝试用可重现的示例来说明我的问题。

谢谢!

于 2013-06-06T16:52:34.523 回答