powered by
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_scatter_gl_(e, y, z, name = NULL, coord.system = "geo", rm.x = TRUE, rm.y = TRUE, ...)
An echarts4r object as returned by e_charts.
echarts4r
e_charts
Column names containing y and z data.
name of the serie.
Coordinate system to plot against.
Whether to remove x and y axis, defaults to TRUE.
TRUE
Any other option to pass, check See Also section.
http://echarts.baidu.com/option-gl.html#series-scatterGL
# NOT RUN { quakes %>% e_charts(long) %>% e_geo( roam = TRUE, boundingCoords = list( c(185, - 10), c(165, -40) ) ) %>% e_scatter_gl(lat, depth) # }
Run the code above in your browser using DataLab