在ggplot2中,为每个柱状图计算“真”的百分比可以通过以下步骤实现:
install.packages("ggplot2")
library(ggplot2)
data <- data.frame(x = c(1, 2, 2, 3, 3, 3, 4, 4, 4, 4))
p <- ggplot(data, aes(x = x))
p <- p + geom_histogram()
p <- p + stat_bin(binwidth = 1, geom = "text", aes(label = paste(round((..count..)/sum(..count..)*100, 2), "%", sep = "")), vjust = -0.5)
print(p)
这样,你就可以得到一个包含每个柱状图“真”的百分比的直方图。注意,这里使用的是ggplot2中的内置统计变换函数stat_bin,它会自动计算每个bin的频率,并将其作为..count..变量提供给geom_text函数。在aes函数中,我们使用paste函数将百分比值和百分号连接起来,并使用round函数将百分比值四舍五入到两位小数。vjust参数用于调整文本的垂直位置,使其位于柱状图的顶部。
推荐的腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云