cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Try the Materials Informatics Toolkit, which is designed to easily handle SMILES data. This and other helpful add-ins are available in the JMP® Marketplace
Choose Language Hide Translation Bar
vharibal
Level II

Line Up box runs with JMP 17.2 but not with JMP 18.1

 

 

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) );
4 REPLIES 4
jthi
Super User

Re: Line Up box runs with JMP 17.2 but not with JMP 18.1

By is handled in different manner in JMP18. I suggest you check out how you could do this in JMP18 as it has more options

jthi_0-1734694909325.png

 

-Jarmo
vharibal
Level II

Re: Line Up box runs with JMP 17.2 but not with JMP 18.1

Sure will check
So lineupbox won’t work with distribution platform anymore as it does with jmp 17?
mmarchandFSLR
Level IV

Re: Line Up box runs with JMP 17.2 but not with JMP 18.1

Line Up Box() takes NCol() as its first argument.  I use it in JMP 18 to display some reports.

 

 

*edit

 

Never mind.  I see you sent the message later to the box.

mmarchandFSLR_0-1734697526042.png

 

jthi
Super User

Re: Line Up box runs with JMP 17.2 but not with JMP 18.1

It might but I would use N Across

Names Default To Here(1); 

dt = open("$SAMPLE_DATA/Big Class.jmp");

dist = dt << Distribution(
	Continuous Distribution(Column(:height), Process Capability(0)),
	By(:age),
	Group Options(Layout("Arrange in Rows", N Across(4)), Return Group(1))
);

dist << journal;
-Jarmo