Nat*_*ari 5 plot r legend bar-chart
在这个条形图中,图例阻挡了它的一部分.如何减小图例的大小?
My code:
`work.gender.marriage.table = table(work$marriage,work$gender)`
Run Code Online (Sandbox Code Playgroud)
`barplot(work.gender.marriage.table,main = "Gender & Marriage",
beside = TRUE,
legend = rownames(work.gender.marriage.table))`
Run Code Online (Sandbox Code Playgroud)
我的数据:
`structure(list(marriage = structure(c(1L, 2L, 3L, 4L, 1L, 2L, 3L, 4L), class = "factor", .Label = c("D", "M", "NM", "W")), gender = structure(c(2L, 2L, 2L, 2L, 1L, 1L, 1L, 1L), .Label = c("F", "M"), class = "factor"), val = c(12L, 61L, 78L, 56L, 71L, 33L, 86L, 93L)), .Names = c("marriage", "gender", "val"), row.names = c(NA, -8L), class = "data.frame")`
Run Code Online (Sandbox Code Playgroud)
这是使用代码后的图像:
barplot(work.gender.marriage.table,main = "Gender & Marriage",
beside = TRUE)
legend("topright",
legend = rownames(work.gender.marriage.table),
ncol = 2,
cex = 0.5)
Run Code Online (Sandbox Code Playgroud)
尝试这个:
barplot(work.gender.marriage.table,main = "Gender & Marriage",
beside = TRUE)
Run Code Online (Sandbox Code Playgroud)
然后将您的图例添加为:
legend("topright",
legend = rownames(work.gender.marriage.table),
ncol = 2,
cex = 0.5)
Run Code Online (Sandbox Code Playgroud)
根据您的数据:
df = structure(list(marriage = structure(c(1L, 2L, 3L, 4L, 1L, 2L, 3L, 4L), class = "factor", .Label = c("D", "M", "NM", "W")), gender = structure(c(2L, 2L, 2L, 2L, 1L, 1L, 1L, 1L), .Label = c("F", "M"), class = "factor"), val = c(12L, 61L, 78L, 56L, 71L, 33L, 86L, 93L)), .Names = c("marriage", "gender", "val"), row.names = c(NA, -8L), class = "data.frame")
df
dfM <- df[which(df$gender=="M"),]
dfF <- df[which(df$gender=="F"),]
dfN <- cbind(dfM[,3], dfF[,3])
colnames(dfN) <- c("M", "F")
rownames(dfN) <- dfM$marriage
dfN
barplot(dfN, beside=T, legend.text = rownames(dfN),
args.legend = list(x = "topleft", bty="n", cex = 0.7, ncol = 2))
Run Code Online (Sandbox Code Playgroud)