fusionPlot {fusionchartsR} | R Documentation |
Create new charts
Description
Main function to make interactive charts. Check all charts at https://www.fusioncharts.com/charts
Usage
fusionPlot(data, x, y, type = "column2d", numberSuffix = NULL)
Arguments
data |
Default dataset to use |
x , y |
character name of variable |
type |
See 'available_charts()' |
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")
[Package fusionchartsR version 0.0.3 Index]