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 bye_charts
or a proxy as returned byecharts4rProxy
.- 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.
Examples
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)