在条形图中,我试图插入一个包含长行名的图例,该行名被切断。我将如何划分行名以占用 2 行?
我知道我也可以更改行名,但希望有另一种方法。
datab <- c(1,8.7, 19, 16, 13.2, 8.7, 67, 66)
matrix.b <- matrix(datab, nrow=4, ncol=2, byrow=TRUE)
colnames(matrix.b) <- c("Hazelnut", "Caneberry")
rownames(matrix.b) <- c("Parasitism", "Predation", "Undeveloped wasp",
"Undamaged")
par(mar=c(5.1, 4.1, 4.1, 7.1), xpd=TRUE)
barplot(matrix.b, col=heat.colors(length(rownames(matrix.b))), width=2,
cex=1.2, ylab="%", cex.axis=1.2, cex.lab=1.2)
legend("topright",inset=c(-0.5,0),
fill=heat.colors(length(rownames(matrix.b))), legend=rownames(matrix.b))