How can add a specified scale to a bar chart?
For example, using this script to add the "pla" column,
How do I add this to the horizontal scale of the bar chart?Thanks Experts!dt=Open("$SAMPLE_DATA/Big Class.jmp");
dt << New Column( "ran", Numeric, Continuous, Set Formula( Col Shuffle() ) );
ca="pla";New Column(ca);Column(ca)<<Formula( round(ran/40*100,0) );dt<<run formulas;Column(ca)<<deleteFormula;
p1=dt<< Graph Builder(
Transform Column( "
...