powered by
Generate column waterfall chart with absolute variance.
column_chart_waterfall_variance( x, baseline, real, colors = 1, data = NULL, result_title, interval = "months" )
vector containing labels for x axis or name of column in data with values of x axis labels
vector containing base values or name of column in data with base values
vector containing values that will be compared to baseline or name of column in data with that values
1 if green color represents positive values having good business impact and red negative values having bad impact or 2 if otherwise
data frame with columns containing data for x, baseline or real series
title for the result bar
intervals on x axis. The width of the bars depends on this parameter
object of class tidychart with a character vector containing SVG elements
# NOT RUN { x <- month.abb baseline <- rnorm(12) real <- c(rnorm(6, mean = -1), rnorm(6, mean = 1)) column_chart_waterfall_variance(x, baseline, real, result_title = 'year profit') # }
Run the code above in your browser using DataLab