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( "rows", Formula( Row() ) ),
Size( 536, 459 ),
Show Control Panel( 0 ),
Variables( X( :rows ), Y( :weight ) ),
Elements( Bar( X, Y, Legend( 5 ) ) ),
SendToReport(
Dispatch( {}, "400", ScaleBox,
{Legend Model(
5,
Properties( 0, {Transparency( 0.5 )}, Item ID( "weight", 1 ) )
)}
)
)
);