Windows 11 > JMP 19 > Script to Assign Continuous Gradient > Issue with Passing the Gradient Range to the Column Property
Hi JMP Community,
I wrote a simple script to assign a color gradient to continuous-value columns based on the 0.05 quantile of columns values.
Names Default To Here(1);
dt = current data table ();
scol = dt << Get Selected Columns ();
For (i = 1, i <= N items (scol), i++,
column (dt, scol[i]) << Format("Fixed Dec", 12, 3);
low_mark = Col Quantile(column (dt, scol[i]), 0.05);
high_mark = Col ...