gpt4 book ai didi

R:从图中镜像 y 轴

转载 作者:行者123 更新时间:2023-12-04 12:35:41 27 4
gpt4 key购买 nike

我有这个问题。我有一个热图,(但我想这适用于每个图)但我需要镜像我的 y 轴。

我在这里得到了一些示例代码:

library(gstat)
x <- seq(1,50,length=50)
y <- seq(1,50,length=50)
z <- rnorm(1000)
df <- data.frame(x=x,y=y,z=z)
image(df,col=heat.colors(256))

这将生成以下热图 First heatmap但我需要镜像 y 轴。从顶部的 0 和底部的 50 开始。有没有人知道我必须做什么来改变它? mirrored heatmap

最佳答案

请参阅 ?plot.default 的帮助页面,其中指定

xlim: the x limits (x1, x2) of the plot. Note that ‘x1 > x2’ is allowed and leads to a ‘reversed axis’.

library(gstat)
x <- seq(1,50,length=50)
y <- seq(1,50,length=50)
z <- rnorm(1000)
df <- data.frame(x=x,y=y,z=z)

所以

image(df,col=heat.colors(256), ylim = rev(range(y)))

关于R:从图中镜像 y 轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5854721/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com