> plot_grid(p1, p2, ncol = 2, align = "h", axis = "tb") Error in `geom_boxplot()`: ! Problem while computing aesthetics. ℹ Error occurred in the 1st layer. Caused by error in `FUN()`: ! object 'Sepal.Length' not found Run `rlang::last_trace()` to see where the error occurred.
时间: 2023-12-06 09:42:32 浏览: 182
plota.rar_>> plot(a)_matlab曲线光滑_三次样条插值
这个错误提示说找不到 `Sepal.Length` 这个对象,很可能是因为 `Sepal.Length` 这个变量名没有定义或者拼写错误。请检查一下代码中是否有定义这个变量,或者确认变量名是否正确。如果问题仍然存在,可以使用 `rlang::last_trace()` 命令来查看错误的具体位置和原因。
阅读全文