stat_summary 函数需要啥包?
Posted
技术标签:
【中文标题】stat_summary 函数需要啥包?【英文标题】:What package is required for stat_summary function?stat_summary 函数需要什么包? 【发布时间】:2021-01-05 22:28:49 【问题描述】:ggplot(data=ED, aes(x=family, y=D_2017))+ stat_summary(fun=mean, geom='bar', fill=c('gray40','gray70'))+ stat_summary(fun .data = mean_cl_normal, geom='errorbar')+ theme_classic()+ labs(x='Tree Type', y= '2017 DBH (cm)')
警告信息:
stat_summary()
中的计算失败:
此功能需要 Hmisc 包
【问题讨论】:
它在警告信息中显示正确...... 【参考方案1】:stat_summary
是 ggplot2 的一部分,但 mean_cl_normal
来自 Hmisc 包。您将需要两者来运行此代码。
【讨论】:
以上是关于stat_summary 函数需要啥包?的主要内容,如果未能解决你的问题,请参考以下文章