I have a script that calculates some slopes and offsets based on a large data set.
Once the slopes and offsets are calculated I want to output them to a new display box or window.
It has been a couple years since I have really done much scripting with JMP so I'm fairly rusty, so I'm sure the code below is far from correct.
How can I output the variables to some kind of pop out window?
My variables are Slope_1C, Offset_1C, Slope_2C, Offset_2C.
New Window ("Slopes and Offsets",
Text box("1C Slope = ", Slope_1C),
Text box("1C Offset =", Offset_1C),
Text box("2C Slope =", Slope_2C),
Text box("2C Offset =", Offset_2C),
);
Thanks!