column_chart_waterfall: Generate column waterfall chart for visualizing contribution.

Description Usage Arguments Value Examples

View source: R/column_chart_functions.R

Description

Generate column waterfall chart for visualizing contribution.

Usage

1
column_chart_waterfall(data, x, series, styles = NULL, interval = "months")

Arguments

data

data frame in wide format containing data to be plotted

x

vector containing labels for x axis or name of column in data with values of x axis labels

series

vector containing names of columns in data with values to plot

styles

optional vector with styles of bars

interval

intervals on x axis. The width of the bars depends on this parameter

Value

object of class tidychart with a character vector containing SVG elements

Examples

1
2
3
df <- data.frame(x = 10:18,
                 y = rnorm(9))
column_chart_waterfall(df, 'x', 'y')

tidycharts documentation built on Jan. 18, 2022, 5:07 p.m.