gpt4 book ai didi

r - qplot/ggplot 中带分数的直方图

转载 作者:行者123 更新时间:2023-12-04 11:36:35 27 4
gpt4 key购买 nike

enter image description here到目前为止,我错过了一个在 y 轴上有一个分数的直方图函数。像这样:

require(ggplot2)
data(diamonds)
idealD <- diamonds[diamonds[,"cut"]=="Ideal",]

fracHist <- function(x){
frac <- (hist(x,plot=F)$counts) / (sum(hist(x,plot=F)$counts))
barplot(frac)
}

### call
fracHist(idealD$carat)

它不是很漂亮,但基本上应该可以解释我想要什么:条形高度应该加起来为 1。另外,中断应该标记 x 轴。我很想用 ggplot2 创造同样的东西 but can't figure out how to get around plotting the frequencies of压裂 instead of plotting压裂 itself .
all I get with `ggplot` is density...

m <- ggplot(idealD, aes(x=carat))
m + geom_histogram(aes(y = ..density..)) + geom_density()

最佳答案

解决方法是使用stat_bin并映射美学 y=..count../sum(..count..)

library(ggplot2)
ggplot(idealD, aes(x=carat)) + stat_bin(aes(y=..count../sum(..count..)))

来自 ?hist 的快速扫描我找不到 hist 中的值是如何分类的.这意味着除非您摆弄 binwidth,否则图表不会相同。 stat_bin 的论据.

enter image description here

关于r - qplot/ggplot 中带分数的直方图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7790788/

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