Python 或 R! - 为指定的光栅文件绘制直方图

发布于 2024-11-02 16:40:19 字数 185 浏览 3 评论 0原文

我有两个光栅文件(一个具有较大的像元大小,第二个具有较小的像元大小。) 我编写了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

挥剑断情 2024-11-09 16:40:19

如果没有更多信息,我只能告诉您查看 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 the hist() function.
http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.hist

抱着落日 2024-11-09 16:40:19

在 R 中,它与 Python 中的非常相似:

hist(data) 

小插图中对栅格包有一个有用的介绍:

http://cran.r-project.org/web/packages/raster/vignettes/Raster.pdf

In R, it's much the same as in Python:

hist(data) 

There is a useful introduction to the raster package in the vignette:

http://cran.r-project.org/web/packages/raster/vignettes/Raster.pdf

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文