Error in `geom_histogram()`: ! Problem while computing stat. ℹ Error occurred in the 1st layer. Caused by error in `setup_params()`: ! `stat_bin()` requires a continuous x aesthetic ✖ the x aesthetic is discrete. ℹ Perhaps you want `stat="count"`? Run `rlang::last_trace()` to see where the error occurred.
时间: 2024-04-22 14:22:44 浏览: 365
35.R语言geom_contour等高线图绘制教程.pdf
5星 · 资源好评率100%
这个错误是由于你在使用 geom_histogram() 函数时,x轴变量是离散型变量而不是连续型变量,所以R无法计算统计量。解决方法是使用适当的函数或修改你的数据,使其符合 geom_histogram() 的要求。如果你只是想显示每个离散值的计数,请使用 stat_count() 函数。你可以使用 rlang::last_trace() 函数查看错误发生的位置。
阅读全文