In R/waterfalls package , how to make the label show in percent format ? Thanks!
library(waterfalls)
waterfall(.data = data.frame(category = letters[1:5],
value = c(1, -0.2, 0.3, -0.1, -0.15)),
fill_colours = colorRampPalette(c("#1b7cd6", "#d5e6f2"))(5),
fill_by_sign = FALSE,
calc_total = TRUE,
total_axis_text='total' )
I have got the answer as below , just mark it .