fusionPlot | R Documentation |
Main function to make interactive charts. Check all charts at https://www.fusioncharts.com/charts
fusionPlot(data, x, y, type = "column2d", numberSuffix = NULL)
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 |
A 2x2 confusion matrix can be displayed using type = "confusionMatrix"
.
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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.