Example data set to illustrate the use of the googleVis package.
A data frame with 10 observations on the following 3 variables.
Country
a factor with levels Brazil
, Germany
...
Profit
a numeric vector
Online
a logical vector
Examples
data(Exports)
str(Exports)
#> 'data.frame': 10 obs. of 3 variables:
#> $ Country: Factor w/ 10 levels "Brazil","France",..: 3 1 10 2 4 6 5 7 8 9
#> $ Profit : num 3 4 5 4 3 2 1 4 5 1
#> $ Online : logi TRUE FALSE TRUE TRUE FALSE TRUE ...