我正在尝试创建一个堆积条形图,显示数据框的两列中显示的值的百分比。
ggplot2
不会让我显示%,但会将输入值显示为1.0的份额。我无法用scale_y_continuous(labels = percent_format())
解决这个问题,这是我在这里看到SO时发现的,所以我对如何解决这个问题感到茫然?
我的错误栏非常长。也许这是因为SEM是按百分比计算的,但是我的图表显示的是1.0的份额。那么所有值都是我数据框中的1/100?
我的数据框:
ID Group Labeled Unlabeled
A 0 2 98
B 0 2 98
C 0 4 96
D 0 4 96
E 0 4 96
A 1 50 50
B 1 40 60
C 1 50 50
D 1 40 60
E 1 30 70
A 2 30 70
B 2 30 70
C 2 20 80
D 2 20 80
E 2 20 80
A 3 10 90
B 3 10 90
C 3 5 95
D 3 10 90
E 3 5 95
A 4 2 98
B 4 2 98
C 4 1 99
D 4 1 99
E 4 0 100
我的代码:
library(ggplot2)
library(plyr)
library(reshape2)
#Calculate means for both groups
melted <- melt(data, id.vars=c("ID", "Group"))
means <- ddply(melted, c("variable", "Group"), summarise,
mean=mean(value))
#Draw bar plot with ggplot2
plot <- ggplot(data=means, aes(x=Group, y=mean, fill=variable)) +
geom_bar(stat="identity",
position="fill",
width = 0.4) +
xlab(" ") + ylab("Percentage (%)") +
theme_classic(base_size = 16, base_family = "Helvetica") +
theme(axis.text.y=element_text(size=16, face="bold")) +
theme(axis.title.y=element_text(size=16, face="bold", vjust=1)) +
theme(axis.text.x=element_text(angle=45,hjust=1,vjust=1, size=16, face="bold")) +
theme(legend.position="right")
# Calc SEM
means.sem <- ddply(melted, c("variable", "Group"), summarise,
mean=mean(value), sem=sd(value)/sqrt(length(value)))
means.sem <- transform(means.sem, lower=mean-sem, upper=mean+sem)
# Add SEM & change appearance of barplot
plotSEM <- plot + geom_errorbar(data=means.sem, aes(ymax=upper, ymin=lower), position="fill", width=0.15)
答案 0 :(得分:2)
这也应该有效(你只需要调整Labeled变量的错误条),默认位置堆栈应该可以工作。
plot <- ggplot(data=means, aes(x=Group, y=mean, fill=variable)) +
geom_bar(stat="identity",
width = 0.4) +
xlab(" ") + ylab("Percentage (%)") +
theme_classic(base_size = 16, base_family = "Helvetica") +
theme(axis.text.y=element_text(size=16, face="bold")) +
theme(axis.title.y=element_text(size=16, face="bold", vjust=1)) +
theme(axis.text.x=element_text(angle=45,hjust=1,vjust=1, size=16, face="bold")) +
theme(legend.position="right")
# Calc SEM
means.sem <- ddply(melted, c("variable", "Group"), summarise,
mean=mean(value), sem=sd(value)/sqrt(length(value)))
means.sem <- transform(means.sem, lower=mean-sem, upper=mean+sem)
means.sem[means.sem$variable=='Labeled',5:6] <- means.sem[means.sem$variable=='Labeled',3] + means.sem[means.sem$variable=='Unlabeled',5:6]
# Add SEM & change appearance of barplot
plotSEM <- plot + geom_errorbar(data=means.sem, aes(ymax=upper, ymin=lower),
width=0.15)
答案 1 :(得分:1)
scales
的{{1}}包才能使用,但我们会为此使用自定义功能format_percent()
代替position = 'stack'
fill
和position = 'identity'
stat = 'identity'
df <- read.table(text = "ID Group Labeled Unlabeled
A 0 2 98
B 0 2 98
C 0 4 96
D 0 4 96
E 0 4 96
A 1 50 50
B 1 40 60
C 1 50 50
D 1 40 60
E 1 30 70
A 2 30 70
B 2 30 70
C 2 20 80
D 2 20 80
E 2 20 80
A 3 10 90
B 3 10 90
C 3 5 95
D 3 10 90
E 3 5 95
A 4 2 98
B 4 2 98
C 4 1 99
D 4 1 99
E 4 0 100", header = T)