当数据不在规则网格上时如何绘制等高线图?

发布于 2024-11-04 11:45:29 字数 239 浏览 3 评论 0原文

假设我有 3 个变量,

x=1:9
y=c(1,1,1,2,2,2,3,3,3)
z=6:14

如何重新排列数据以便可以用 r 绘制数据的等高线图? 我收到消息了

Error in contour.default(x, y, z) : 
  increasing 'x' and 'y' values expected

谢谢。

Say I have 3 variables such that

x=1:9
y=c(1,1,1,2,2,2,3,3,3)
z=6:14

How can I rearrange the data so that I can make a contour plot of the data with r?
I am getting the message

Error in contour.default(x, y, z) : 
  increasing 'x' and 'y' values expected

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

套路撩心 2024-11-11 11:45:29

z 是要绘制等高线的值的矩阵xy 是它们各自的位置。 r-help 邮件列表中的“Tyler”对此进行了解释,并举例说明了如何转换数据以使事情正常进行。另请参阅 ?contour 帮助中的示例。

x = seq(0, 10, by = 0.5)
y = seq(0, 10, by = 0.5)
z <- outer(x, y)

contour(x, y, z)

z is a matrix of values where contour lines are to be drawn. x and y are their respective location. "Tyler" at r-help mailing list explains this and gives an example of how to transform your data to make things work. See also examples in the help of ?contour.

x = seq(0, 10, by = 0.5)
y = seq(0, 10, by = 0.5)
z <- outer(x, y)

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