Description Usage Arguments Value Examples
A smarter bar chart.
1 |
data |
A data frame. |
x |
A categorical variable defining the width categories. |
y |
A numeric variable defining the bar height. |
width |
A numeric variable defining the bar widths |
values |
A boolean indicating whether to show value labels in bars |
A bar mekko constructed with ggplot2.
1 2 3 4 5 6 7 8 9 10 | library(ggplot2)
df <- data.frame(
region = c('Northeast', 'Southeast', 'Central', 'West'),
sales = c(1200, 800, 450, 900),
avg_margin = c(3.2, -1.4, 0.1, 2.1)
)
barmekko(df, region, avg_margin, sales)
barmekko(df, region, avg_margin, sales) + labs(title = 'Margins by Region')
barmekko(df[order(-df$sales),], region, avg_margin, sales)
barmekko(df[order(-df$avg_margin),], region, avg_margin, sales)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.