gpt4 book ai didi

R:线框,如分类变量的 3D 图

转载 作者:行者123 更新时间:2023-12-04 17:56:30 26 4
gpt4 key购买 nike

我想开发线框之类的图,在 X、Y 轴上使用非数字,但在 Z 轴上使用数字。

# mydata 
set.seed(123)
yv <- rnorm(20, 10, 3)
gen <- rep(paste("G", 1:5, sep= ""), 4)
env <- c(rep(c("CA","MN","SD", "WI"), each = 5))
mdf <- data.frame(yv, gen, env)

我尝试使用格子:
require(lattice)
wireframe(yv,gen, env, data = mdf)

Error in UseMethod("wireframe") :
no applicable method for 'wireframe' applied to
an object of class "c('double', 'numeric')"

任何建议表示赞赏。

最佳答案

这似乎有效:

set.seed(123)
mdf <- data.frame(yv=rnorm(20, 10, 3),
gen=rep(paste("G", 1:5, sep= ""), 4),
env=c(rep(c("CA","MN","SD", "WI"), each = 5)))
library(lattice)
wireframe(yv~gen*env,data=mdf,scales=list(arrows=FALSE))

enter image description here

关于R:线框,如分类变量的 3D 图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8069191/

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