如何使用 R 地图工具库将数据框架转换为 SpaceGridDataFrame? 我是 Rpy2 新来的, 所以这可能是个非常基本的问题 。
The R Code is: coordinates(dataf)=~X+Y
Python :
import rpy2
import rpy2.robjects as robjects
r = robjects.r
# Create a Test Dataframe
d = { TEST : robjects.IntVector((221,412,332)), X : robjects.IntVector(( 25 , 31 , 44 )), Y : robjects.IntVector(( 25 , 35 , 14 ))}
dataf = robjects.r[ data.frame ](**d)
r.library( maptools )
# Then i could not manage to write the above mentioned R-Code using the Rpy2 documentation
除了这个特殊的问题之外,我很乐意得到一些反馈,了解一个更普遍的想法:我的最终目标是利用Gstat图书馆对空间数据进行回溯式搜索。 R-script运作良好,但我想打电话给我来自Python/Arcgis的脚本。你对这个任务有什么看法? 通过 rpy2 进行回归式搜索是可能的吗?
Thanks a lot! Richard