(This article was first published on Why? » R, and kindly contributed to R-bloggers)
New features:
rasterImage()
(R2.11)- bitmap raster drawing;
- have maps as data backdrops.
- Polygons with holes:
polypath()
-(R2.12) - At present there is no way to tell when to actually show the plot. For example:
plot(x); lines(x)
. Should we display the plot afterplot
or afterlines
- Solution
dev.hold()
anddev.flush()
- Better performance and useful for animations – (currently in R-dev).
Challenges
Data size increases, but large RAM (>100GB) and CPU power is affordable. Visualization needs to keep up.
- Currently rendering is slow. Solutions: OpenGL + GPUs.
- Visualisation methods for large data
- interactivity (divide and conquer, shift of focus): use iPlots eXtreme (very nice demo of iplots!)
- sufficient statistics, aggregations, etc.
Links
Note: lots of very nice demos, hence the lack of notes.
To leave a comment for the author, please follow the link and comment on their blog: Why? » R.
R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: Data science, Big Data, R jobs, visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series, trading) and more...