11/12/2016

Project Description

This is an interactive map created using the plotly package. It shows a statistical summary via a box plot of the number of phones in existence across world geographic areas. Data was obtained from the WorldPhones dataset available in R.

Slide with R Output

wf <- as.data.frame(WorldPhones)
z <- gather(wf, key, country)

Slide with Plot