Interactive 3d plot, in R
[This article was first published on Freakonometrics - Tag - R-english, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Following the course of this afternoon, I will just upload some codes to make interactive 3d plots, in R.
> library(rgl) > library(evd); > data(lossalae) > U=rank(lossalae[,1]+rnorm(nrow(lossalae), + mean=0,sd=.001))/(nrow(lossalae)+1) > V=rank(lossalae[,2])/(nrow(lossalae)+1) > M=kde2d(qnorm(U),qnorm(V),n=35) > library(rgl) > persp3d(M$x,M$y,M$z,col='green', + xlab="loss",ylab="alae",zlab="")
To leave a comment for the author, please follow the link and comment on their blog: Freakonometrics - Tag - R-english.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.