gpt4 book ai didi

r - R-绘制矩阵值

转载 作者:行者123 更新时间:2023-12-03 08:25:20 25 4
gpt4 key购买 nike

我有一个称为I的32x32矩阵,想尝试对其进行绘制。即这两个轴的范围应分别为1到32,在z-axis上,我希望看到不同的值。
如果可以更好地连接这些点,那么现在不是最重要的部分。

我已经使用“library(emdbook)”包进行了尝试,但是以下行

curve3d(I[x,y], xlim=c(1:N), ylim=c(1:N))

但是,它给我带来了错误 "Error in I[x, y] : object of type 'closure' is not subsettable".
我很高兴提出任何关于更改的建议:)

谢谢!

最佳答案

您可以生成表面图,例如通过使用persp:

## Example data:
x <- (1:32)/32
y <- (1:32)/32
model <- function (a, b){
1 - (a-0.5)^2 - (b-0.5)^2
}
z <- outer(x, y, model)

## Simple surface plot:
persp(x,y,z,box = TRUE, theta = -40, phi = 20)

simple surface plot

但是正如@din所说,热图可能更合适:
## Simple heatmap:
image(t(z))

simple heatmap

关于r - R-绘制矩阵值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43509223/

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