Learn R Programming

echarts4r (version 0.2.0)

e_geo_3d: Geo 3D

Description

Initialise geo 3D.

Usage

e_geo_3d(e, serie, color, type = "world", rm_x = TRUE, rm_y = TRUE,
  ...)

e_geo_3d_(e, serie = NULL, color = NULL, type = "world", rm_x = TRUE, rm_y = TRUE, ...)

Arguments

e

An echarts4r object as returned by e_charts.

serie

Column name of serie to plot.

color

Color.

type

Map type.

rm_x, rm_y

Whether to remove x and y axis, defaults to TRUE.

...

Any other option to pass, check See Also section.

See Also

e_country_names, Additional arguments

Examples

Run this code
# NOT RUN {
choropleth <- data.frame(
  countries = c("France", "Brazil", "China", "Russia", "Canada", "India", "United States",
                "Argentina", "Australia"),
  height = runif(9, 1, 5),
  color = c("#F7FBFF", "#DEEBF7", "#C6DBEF", "#9ECAE1", "#6BAED6", "#4292C6", 
            "#2171B5", "#08519C", "#08306B")
)

choropleth %>% 
  e_charts(countries) %>% 
  e_geo_3d(height, color)
  
# }

Run the code above in your browser using DataLab