标签: python r rpy2
我试图在Python中实现这4行R代码:
library(imager) file <- system.file('extdata/parrots.png',package='imager') im <- load.image(file) plot(im)
基本上,我希望能够在Python中运行所有这些R函数:https://dahtah.github.io/imager/imager.html (上面的代码是第一个例子)
谢谢!