powered by
Draw pie and donut charts.
e_pie(e, serie, name = NULL, legend = TRUE, rm.x = TRUE, rm.y = TRUE, ...)e_pie_(e, serie, name = NULL, legend = TRUE, rm.x = TRUE, rm.y = TRUE, ...)
e_pie_(e, serie, name = NULL, legend = TRUE, rm.x = TRUE, rm.y = TRUE, ...)
An echarts4r object as returned by e_charts.
echarts4r
e_charts
Column name of serie to plot.
name of the serie.
Whether to add serie to legend.
Whether to remove x and y axis, defaults to TRUE.
TRUE
Any other option to pass, check See Also section.
https://ecomfe.github.io/echarts-doc/public/en/option.html#series-pie
# NOT RUN { mtcars %>% head() %>% dplyr::mutate(model = row.names(.)) %>% e_charts(model) %>% e_pie(carb) # }
Run the code above in your browser using DataLab