October 2015
Beginner to intermediate
246 pages
4h 55m
English
googleVis is a package in R that mainly interfaces R and Google Chart's API. This means that you can create Google charts within R via high-level functions. This has the great advantage of not needing to make service calls and parse the objects to generate the charts. Unlike traditional plotting in R, Google charts are displayed in a browser. In fact, their plot creation functions do not display a plot directly but generate an HTML code.
When working under R but not in a Shiny application, a plot() call with the HTML object as argument automatically opens a browser with the corresponding plot. The following is an example of this:
data(iris) iris.table <- aggregate(Petal.Length ~ Species, data=iris, FUN="mean") ...
Read now
Unlock full access