R ggplot2,使用geom_histogram时出现"invalid unit"错误
R ggplot2, "invalid unit" error when using geom_histogram
我在 ggplot2 中使用 geom_histogram() 得到以下错误。下面它是用 R 中的标准示例数据复制的,但这似乎发生在我提供的任何数据上。我找不到解释,也无法通过错误的根源进行调试。
任何猜测?我正在使用 RStudio 版本 1.4.1106。
ggplot(diamonds, aes(x=carat)) + geom_histogram(bins=30)
Error in unit(unclass(x), attr(x, "unit"), attr(x, "data")) :
Invalid unit
错误是因为安装的 ggplot2 版本早于 R 版本(我必须从本地存储库安装包,所以有时它们不会更新)。
一旦我安装了最新版本,它就消失了。
感谢所有调查此问题的人。
我在 ggplot2 中使用 geom_histogram() 得到以下错误。下面它是用 R 中的标准示例数据复制的,但这似乎发生在我提供的任何数据上。我找不到解释,也无法通过错误的根源进行调试。 任何猜测?我正在使用 RStudio 版本 1.4.1106。
ggplot(diamonds, aes(x=carat)) + geom_histogram(bins=30)
Error in unit(unclass(x), attr(x, "unit"), attr(x, "data")) :
Invalid unit
错误是因为安装的 ggplot2 版本早于 R 版本(我必须从本地存储库安装包,所以有时它们不会更新)。 一旦我安装了最新版本,它就消失了。 感谢所有调查此问题的人。