Learned another thing today: it is very simple to create animated GIFs in the rgl package with the build-in functions spin3d, play3d and movie3d.
library( pca3d ) data(metabo) pca <- prcomp( metabo[,-1], scale.= TRUE ) pca3d( pca, group= metabo[,1] ) rot <- spin3d( axis= c( 0, 1, 0 ) ) movie3d( rot, duration= 12 )
Here is the result:
