totalplot<-cowplot::plot_grid(plotlist=plotlist,ncol=1) Error in `geom_line()`: ! Problem while computing aesthetics. ℹ Error occurred in the 2nd layer. Caused by error in `FUN()`: ! object 'EMD' not found Run `rlang::last_trace()` to see where the error occurred.
时间: 2024-04-28 13:21:55 浏览: 216
NX二次开发UF-DRF-ask-plot-drawing-images 函数介绍
根据错误提示,似乎出现了一个"EMD not found" 的错误,可能是由于没有加载或者创建 `EMD` 对象。你需要检查一下代码中是否有创建 `EMD` 对象的语句,或者在运行这段代码之前是否已经加载了包含 `EMD` 对象的数据或者文件。同时,你也可以运行 `rlang::last_trace()` 命令来查看更详细的错误信息,以便更好地定位问题所在。
阅读全文