Python 或 R! - 为指定的光栅文件绘制直方图
我有两个光栅文件(一个具有较大的像元大小,第二个具有较小的像元大小。) 我编写了一个 Python 脚本,它将这些文件分割成受更大单元格限制的片段。
现在我想绘制单元格值的直方图并从较大的单元格添加值(例如作为一条线)。不幸的是我不知道如何在 R 中执行此操作(它可能很有用,因为我想对许多文件夹执行此操作)
你能帮助我吗?
I have two raster files (one with big cell size and second with much smaller.)
I have written a Python script which splits these files into pieces limited by bigger cells.
Now I want to draw a histogram for cell values and add value (for example as a line) from the bigger cell. Unfortunately I don't know how to do it in R (it may be useful, because I want to do this operation for many folders)
Could you help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果没有更多信息,我只能告诉您查看
matplotlib
,特别是hist()
函数。http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib .pyplot.hist
Without more information, all I can tell you is to look into
matplotlib
, specifically thehist()
function.http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.hist
在 R 中,它与 Python 中的非常相似:
小插图中对栅格包有一个有用的介绍:
http://cran.r-project.org/web/packages/raster/vignettes/Raster.pdf
In R, it's much the same as in Python:
There is a useful introduction to the raster package in the vignette:
http://cran.r-project.org/web/packages/raster/vignettes/Raster.pdf