Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都知道如何使用 plot3D 包更改 xy 平面的宽长纵横比?例如,如何使x轴显示为轴长度的两倍y(不更改数据值):
x
y
plot3D::persp3D(z = volcano)
这对我有用:
persp3D(x=1:nrow(volcano)*2, y=1:ncol(volcano), z=volcano, scale=FALSE)