Displaying 1 result from an estimated 1 matches for "nprecipitation".
Did you mean:
precipitation
2007 Mar 16
0
How can I place axis annotations away from axis?
....txt 3d_plot_data.txt
data<-read.table("3d_plot_data.txt", header=T)
attach(data)
par(mfrow=c(1,2))
library(akima)
interpolation<-interp(rr,veg_r,predict)
persp(interpolation,theta = -45, phi = 30, ticktype = "detailed", nticks=4,
cex=0.8, expand=0.5, xlab="\n\n\nPrecipitation", yla="\n\n\nVegetation",
zlab="\n\n\nDensity", shade=0.4)
interpolation<-interp(tc,veg_r,predict, duplicate="mean")
persp(interpolation,theta = -45, phi = 30, ticktype = "detailed", nticks=4,
cex=0.8, expand=0.5, xlab="\n\n\nTemperature",...