Hi!
I have a practical problem that I think I could solve using some kind of parameter or table variable.
Let's say I have multiple processes, each having a row. Which are characterized by few parameters, A, B, C... Those are columns.
Let's say for each parameter I have a threshold after which it is considered risky. So I created columns bit-A, bit-B etc. If parameter is grater than some number, I give it bit "1", if it's below - I give it bit "0". Then I do logical AND for all the bits and if it's "1" (all parameters are in "risky" zone) I call the whole process "risky". Let's say final risky bit is saved in column bit-Risky.
So, I'm sure about thresholds on A and C, but I'm not sure about threshold on B. So I want to see how number of risky processes depends on threshold for B (let's call it dB).
So, how do I plot Sum(bit-Risky) vs. dB?