Questions tagged [waterfall]

Waterfall is an abstraction model for software design which translates requirements into lists of simple routines and arranges them in a sequence of phases based on dependencies.

In Javascript, Elan Shanker's async-waterfall package organizes series of functions with callback completions into waterfalls. It runs an array of functions in series, each passing their results to the next in the array. However, if any of the functions pass an error to the callback, the next function is not executed and the main callback is immediately called with the error.

In chart design, a waterfall chart is a form of data visualization that helps in understanding the cumulative effect of sequentially introduced positive or negative values. These intermediate values can either be time based or category based.

217 questions
2
votes
1 answer

Microsoft Project and Waterfall

Microsoft Project and Waterfall Does using Microsoft Project force you into a waterfall model? Could anyone point me to examples of successful iterative (agile for example) projects that successfully use(d) MS Project as a supporting tool?
Otávio Décio
  • 73,752
  • 17
  • 161
  • 228
2
votes
1 answer

How to stop executing waterfall on error in async of node.js?

I am using async module with waterfall method. async.waterfall([ function(callback) { ... callback(err); }, function(result, callback) { console.log("This function should not be…
Sergiy
  • 611
  • 7
  • 16
2
votes
0 answers

Waterfall plot with different x axis

I would like to make a waterfall plot in MATLAB using a different x axis for each plot. I want my plot to look like the picture in the answer to this question: waterfall plot using ribbon , but in this exemple, 'xaxis' is the same for each curves .…
squille
  • 243
  • 1
  • 2
  • 10
2
votes
2 answers

Image Segmentation, watershed, waterfall, p algorithm

I was wondering if anyone is aware of any currently available packages for segmentation using the waterfall method or p algorithm. I've looked in github, CRAN, and Fiji and haven't found anything despite published literature discussing the benefits…
2
votes
1 answer

fill the blanks of waterfall from other table

I have two tables: 1. raw forecast data from forecast table, pulled by snap shot dates, and I use the data to created waterfall looks like this item/snapshot forecast weeks 123 | 8/25/14 | 9/1/14 | 9/8/14 |…
Angie Li
  • 175
  • 3
  • 14
2
votes
4 answers

Is a Waterfall model an Incremental development model?

I was wondering if a Waterfall model is an incremental model because technically each phase of the Waterfall model adds on a little more. Thus saying this I have read from quite a few different websites that it is not incremental. Can someone…
Ryman Holmes
  • 746
  • 3
  • 22
  • 40
2
votes
1 answer

about labeling the x axis

I have many data need to be plotted as waterfall in matlab. I have more than 10 columns of data, each column represents one data data set. I put all data in a big matrix such that the first data set put in the first row of matrix, the second data…
user1285419
  • 2,183
  • 7
  • 48
  • 70
2
votes
4 answers

Are there any pros for the waterfall model testing vs agile?

I have read much information about agile and waterfall and I just cannot think of any reason why someone today should do the waterfall. I am concerned especially about testing process. Do I miss something, is there some clear advantage that I have…
John V
  • 4,855
  • 15
  • 39
  • 63
1
vote
0 answers

Next.JS Too many initial javascript requests?

I asked this in nextjs github discussion but i assume SO is more active. Let me show you my waterfall real quick After the css (5th request) is loaded there is 16 javascript requests. Then two menifests. This is blocking some critical assets that…
Anna
  • 319
  • 5
  • 18
1
vote
1 answer

have waterfall scaled plotly R

I have the following data: df = structure(list(x = structure(1:9, .Label = c("A", "B", "C", "D", "E", "F", "G", "H", "I"), class = "factor"), measure = c("relative", "relative", "relative", "relative", "relative", "relative", "relative",…
frank
  • 3,036
  • 7
  • 33
  • 65
1
vote
1 answer

Incomplete SHAP waterfall plot in Anaconda

I have trained a LightGBM model called model and plotted the SHAP waterfall graph as follows: explainer = TreeExplainer(model) sv = explainer(X) exp = Explanation(sv.values[:,:,0], sv.base_values[:,1], …
Giampaolo Levorato
  • 1,055
  • 1
  • 8
  • 22
1
vote
0 answers

In R/waterfalls, when `fill_by_sign = TRUE` , how to change the fill colour group by 'sign'

In R/waterfalls, when fill_by_sign = TRUE , the positive columns fill in 'green' and negative columns fill in 'red'。If I want positive columns fill in 'white', negative columns fill in 'pink',how can i do it ? Thanks! library(waterfalls) plot_data…
anderwyang
  • 1,801
  • 4
  • 18
1
vote
0 answers

PowerBI Waterfall Chart - Change Text of Increase/Decrease

Can you change the headings of increase/decrease in the Waterfall chart in PowerBI?
Ryan Schraub
  • 31
  • 1
  • 5
1
vote
0 answers

Ultimate waterfall chart on power bi

im creating a waterfall chart with 3 measures as seen in the picture attached. However need a small tweak in the chart. Column third (from left) has measure named "Notice2ContactwithLA" to it which shows value +29, I would like this column to start…
Akarsh
  • 11
  • 1
1
vote
0 answers

Waterfall Dialog not executes all steps when called from other Dialog

I'm building a bot connected to LUIS to get intents and with some dialogs that make other things. I have the following dialogs: MainDialog: that calls LUIS to get intents DialogOne: with some steps DialogTwo: with some steps ScoreDialog: with a…
Sergio
  • 175
  • 5
  • 21