I am running distribution platform to store multiple graphs in 4 columns per row
this ran perfectly with JMP 17.2, but isnt running with JMP 18.2
Can someone please help?
Lub = lineup box(
Dist_ BLE = dt_BLE << Distribution(
Continuous Distribution(
Column( :"Pout_accuracy"n),
Quantiles( 0 ),
Vertical( 0 ),
Count Axis( 1 ),
Show Counts( 0 ),
),
SendToReport(
Dispatch(
{"Pout_accuracy"},
"1",
ScaleBox,
{ Inc( 0.5 ),
Minor Ticks( 4 )}
),
Dispatch( {"Pout_accuracy"}, "Quantiles", OutlineBox, {Close( 1 )} ),
Dispatch(
{"Pout_accuracy"},
"1",
ScaleBox,
{Add Ref Line( -2, "Solid", "Red", "LSL", 1 ),
Add Ref Line( 2, "Solid", "Red", "USL", 1 )}
)
),
By("PktType"n, "Freq"n , "Txpwr"n , "BT_PA"n, "Temp"n )
);
);
jj = New Window( "The Output_BLE", << journal, V List Box(Lub) );
Lub << N Col( 4 );
jj << Save Journal ("C:\Users\NXF90574\Desktop\bt test\bt_1\journal_dist_BLE.jrn");
jj << Save PDF( "C:\Users\NXF90574\Desktop\bt test\bt_1\BLE_Dist.pdf", show page setup(0), potrait(1) );