gpt4 book ai didi

r - 使条形图中的条具有相同的高度

转载 作者:行者123 更新时间:2023-12-04 19:58:08 25 4
gpt4 key购买 nike

如何让条形图中的条具有相同的高度?

> head(data.m)
Classes variable value
1 rRNA KO1.DOC 4.890821e+04
2 rRNA KO1.DOC 3.068479e+03
3 Other KO1.DOC 7.618553e+01
4 Other KO1.DOC 4.043281e-01
5 Other KO1.DOC 0.000000e+00
6 Other KO1.DOC 0.000000e+00

ggplot(data.m, aes(variable, fill=Classes, order = -as.numeric(Classes))) +
geom_bar(aes(y=value), position="stack", stat="identity") +
theme_bw(base_size=8)

enter image description here

最佳答案

答案是使用 position="fill" geom_bar :

# regular barplot
ggplot(mtcars, aes(x=factor(cyl), fill=factor(vs))) +
geom_bar()
# "filled"
ggplot(mtcars, aes(x=factor(cyl), fill=factor(vs))) +
geom_bar(position="fill")

关于r - 使条形图中的条具有相同的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31263535/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com