Main function to make interactive charts. Check all charts at https://www.fusioncharts.com/charts
Arguments
- data
Default dataset to use
- x, y
character name of variable
- type
type of chart
- numberSuffix
Specify the suffix for all the Y-axis values on the chart
Examples
library(fusionchartsR)
# Single
df <- data.frame(label = c("Venezuela", "Saudi", "Canada", "Russia"), value = c(290, 260,180, 115))
df %>%
fusionPlot(x = "label", y = "value", type = "pie2d") %>%
fusionTheme(theme = "fusion")