Error in `geom_point()`: ! Problem while converting geom to grob. ℹ Error occurred in the 2nd layer. Caused by error in `coords$size * .pt`: ! non-numeric argument to binary operator Run `rlang::last_trace()` to see where the error occurred.
时间: 2024-04-28 19:21:56 浏览: 792
这是一个 R 语言中的错误信息,通常是由于代码中的某些变量类型不匹配导致的。具体来说,这个错误可能是由于一个坐标系(coords)的大小(size)变量不是数值类型导致的。你需要检查一下代码中涉及到大小变量的部分,看看是否有变量类型不正确的情况,并且确保它们是数值类型。如果你需要更多帮助,可以提供你的代码和数据集,我可以帮你找到问题所在。
相关问题
Error in `geom_line()`: ! Problem while setting up geom. ℹ Error occurred in the 1st layer. Caused by error in `compute_geom_1()`: ! `geom_line()` requires the following missing aesthetics: y Run `rlang::last_trace()` to see where the error occurred.
这是一个 R 语言中的错误提示,通常是因为你使用了 `geom_line()` 这个函数,但是没有指定 `y` 这个参数,从而导致绘图失败。你需要检查一下你的代码,看看是否缺少了某些必要的参数。你可以通过运行 `rlang::last_trace()` 来查看错误的具体位置。另外,你也可以在提问的时候提供更多的代码和上下文信息,这样我才能更好地帮助你解决问题。
Error in `geom_point()`: ! Problem while computing aesthetics. ℹ Error occurred in the 1st layer. Caused by error in `FUN()`: ! object 'BetaDL' not found Run `rlang::last_trace()` to see where the error occurred.
这个错误提示显示在执行 `geom_point()` 函数时出现了问题,可能是由于使用了未定义的变量 `BetaDL` 导致的。需要检查一下代码中是否正确定义了 `BetaDL` 变量,或者在 `aes()` 函数中正确指定了数据框中包含 `BetaDL` 变量的列名。另外,也可以通过 `rlang::last_trace()` 函数查看详细的错误信息,以便更好地定位问题所在。
阅读全文