Can JMP show the probability of 1 result or range through a graph?
Nov 6, 2023 07:57 PM(11030 views)
Hello everyone!!!, a question: What graph in JMP can answer the probabilities of obtaining a value or range of response, for example like the following graph.
Attached I share a simple example applying your idea in JMP, when comparing it with the graphs of the initial example, it seems that the calculation method is not the same and it does not have the sliding bar for ranges. I still think JMP can have a bar chart equal to or better than the initial example I shared.
Attached I share a simple example applying your idea in JMP, when comparing it with the graphs of the initial example, it seems that the calculation method is not the same and it does not have the sliding bar for ranges. I still think JMP can have a bar chart equal to or better than the initial example I shared.
You can script this and make it look quite nice, but the graph builder option with (global) data filter is much more simple to implement (there are also most likely other platforms which can do somewhat what you want).
Below is an IDEA what can be done with scripting, it is not finished script and could (and should) be improved
I'm glad to greet you! I couldn't apply your motivating and great idea to the example in JMP that I shared (Certainty Formula.jmp), the image you share shows that JMP can equal or even improve the way of answering questions about certainty, If possible, could you share the script that works with any new example or an add-in for JMP?
This code isn't commented and it is messy, but it might function as first working version. I haven't verified if the calculations are correct, I just tried to get the graph working properly (I'm not selecting values from data table as it provides more flexibility for the graph BUT it can have it's limits on something else)
edit: [copy paste error] ☛ code adjusted probability calculated via #_selected/ #_total (same as : Col Number(selected())/#_total ) [before: Sum()/Sum()]
Re: Can JMP show the probability of 1 result or range through a graph?
Created:
Nov 11, 2023 03:56 PM
| Last Modified: Nov 11, 2023 1:00 PM(1703 views)
| Posted in reply to message from hogi 11-11-2023
Lessons learned:
by default there is no range slider box in Application Builder - so it has to be added manually. Then it shows up in the editor - but there is no possibility to adjust the settings via the GUI - just via JSL commands.
In the column variables,
the columns are saved as lists: *)
myCol = {:Total sale}
beautiful idea -> myCol can be used directly as an argument in formulas, so the ultimate fix for Custom Function - how to reference the column and one can use myCol[1] to get the actual column - unevaluated
1. The chart could accept placing the minimum and maximum number (range) 2. Could the script accept more than 1 objective? 3. Can it be an add-in for JMP?