Learn R Programming

animation (version 2.0-0)

Rosling.bubbles: The bubbles animation in Hans Rosling's Talk.

Description

The bubbles animation in Hans Rosling's Talk. (``Debunking third-world myths with the best stats you've ever seen'')

Usage

Rosling.bubbles(x, y, circles, squares, rectangles, 
    stars, thermometers, boxplots, inches = TRUE, fg = par("col"), 
    bg, xlab = "x", ylab = "y", main, xlim = range(x), ylim = range(y), 
    ..., grid = TRUE, text = 1:ani.options("nmax"), text.col = rgb(0, 
        0, 0, 0.5), text.cex = 5)

Arguments

x,y
the x and y co-ordinates for the centres of the bubbles (symbols). Default to be 10 uniform random numbers in [0, 1] for each single image frame (so the length should be 10 * ani.options("nmax"))
circles,squares,rectangles,stars,thermometers,boxplots
different symbols; see symbols. Default to be circles.
inches,fg,bg,xlab,ylab,main,xlim,ylim,...
see symbols. Note that bg has default values taking semi-transparent colors.
grid
logical; add a grid to the plot?
text
a character vector to be added to the plot one by one (e.g. the year in Rosling's talk)
text.col,text.cex
color and magnification of the background text

Value

  • NULL.

Details

In Hans Rosling's attractive talk ``Debunking third-world myths with the best stats you've ever seen'', he used a lot of bubble plots to illustrate trends behind the data over time. This function gives an imitation of those moving bubbles, besides, as this function is based on symbols, we can also make use of other symbols such as squares, rectangles, thermometers, etc. Suppose we have observations of $n$ individuals over ani.options("nmax") years. In this animation, the data of each year will be shown in the bubbles (symbols) plot; as time goes on, certain trends will be revealed (like those in Rosling's talk). Please note that the arrangement of the data for bubbles (symbols) should be a matrix like $A_{ijk}$ in which $i$ is the individual id (from 1 to n), $j$ denotes the $j$-th variable (from 1 to p) and $k$ indicates the time from 1 to ani.options('nmax'). And the length of x and y should be equal to the number of rows of this matrix.

References

http://animation.yihui.name/da:ts:hans_rosling_s_talk http://www.ted.com/talks/hans_rosling_shows_the_best_stats_you_ve_ever_seen.html

See Also

symbols

Examples

Run this code
oopt = ani.options(interval = 0.1, nmax = ifelse(interactive(), 
    50, 2))

## use default arguments (random numbers); you may try to find the real data
par(mar = c(4, 4, 0.2, 0.2))
Rosling.bubbles()

## rectangles
Rosling.bubbles(rectangles = matrix(abs(rnorm(50 * 
    10 * 2)), ncol = 2))

## save the animation in HTML pages
saveHTML({
    par(mar = c(4, 4, 0.2, 0.2))
    ani.options(interval = 0.1, nmax = ifelse(interactive(), 
        50, 2))
    Rosling.bubbles(text = 1951:2000)
}, img.name = "Rosling.bubbles", htmlfile = "Rosling.bubbles.html", 
    ani.height = 450, ani.width = 600, title = "The Bubbles Animation in Hans Rosling's Talk", 
    description = c("An imitation of Hans Rosling's moving bubbles.", 
        "(with 'years' as the background)"))

ani.options(oopt)

Run the code above in your browser using DataLab