gpt4 book ai didi

r - 在 R 中的水平图上显示数据值

转载 作者:行者123 更新时间:2023-12-01 14:45:09 25 4
gpt4 key购买 nike

我想知道是否可以在 R 中的 levelplot(格子包)上显示数据值。如果有人帮助我这样做,我将不胜感激。提前致谢。

最佳答案

您可以编写自己的面板功能,例如:

library("lattice")
x <- seq(pi/4, 5*pi, length.out=10)
y <- seq(pi/4, 5*pi, length.out=10)
r <- as.vector(sqrt(outer(x^2, y^2, "+")))
grid <- expand.grid(x=x, y=y)
grid$z <- cos(r^2)*exp(-r/(pi^3))

p <- levelplot(z~x*y, grid,
panel=function(...) {
arg <- list(...)
panel.levelplot(...)
panel.text(arg$x, arg$y, round(arg$z,1))})
print(p)

panel.levelplot example

关于r - 在 R 中的水平图上显示数据值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6569666/

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