e_scatter_gl | R Documentation |
Draw scatter GL.
e_scatter_gl(
e,
y,
z,
name = NULL,
coord_system = "geo",
rm_x = TRUE,
rm_y = TRUE,
...
)
e_scatter_gl_(
e,
y,
z,
name = NULL,
coord_system = "geo",
rm_x = TRUE,
rm_y = TRUE,
...
)
e |
An |
y, z |
Column names containing y and z data. |
name |
name of the serie. |
coord_system |
Coordinate system to plot against. |
rm_x, rm_y |
Whether to remove x and y axis, defaults to |
... |
Any other option to pass, check See Also section. |
quakes |>
e_charts(long) |>
e_geo(
roam = TRUE,
boundingCoords = list(
c(185, -10),
c(165, -40)
)
) |>
e_scatter_gl(lat, depth)
# timeline
quakes$year <- rep(c("2017", "2018"), 500)
quakes |>
group_by(year) |>
e_charts(long, timeline = TRUE) |>
e_geo(
roam = TRUE,
boundingCoords = list(
c(185, -10),
c(165, -40)
)
) |>
e_scatter_gl(lat, depth)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.