cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
AdamChoen
Level IV

Organize a journal via jsl

Hi,
Is there A way i can save my charts to journal using JSL? one chart next to the other (as row), And not just below (as column)
End goal is for journal with
Trend chart1 boxplot1
Trend chart2 boxplot2
Trend chart3 boxplot3
.    .    .
.
.

Appreciate your help, Adam.

Thanks, Adam
1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Organize a journal via jsl

There is a whole subsystem in JMP to do the kinds of things you are asking about.  A simple illustration is shown below.  This programming environment is detailed in the Scripting Guide

     Help==>Books==>Scripting Guide

journal.PNGjournal.PNG

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );
nw = New Window( "Sample",
	<<journal,
	V List Box(
		H List Box(
			Oneway( Y( :height ), X( :sex ) ),
			Distribution(
				Stack( 1 ),
				Continuous Distribution( Column( :height ), Horizontal Layout( 1 ), Vertical( 0 ) )
			)
		),
		H List Box(
			Oneway( Y( :weight ), X( :sex ) ),
			Distribution(
				Stack( 1 ),
				Continuous Distribution( Column( :weight ), Horizontal Layout( 1 ), Vertical( 0 ) )
			)
		)
	)
);

Again, the above JSL is a very basic illustration of this facility in JMP.  Many other methods could have been used to accomplish this and far more complex outputs.

Jim

View solution in original post

3 REPLIES 3
txnelson
Super User

Re: Organize a journal via jsl

There is a whole subsystem in JMP to do the kinds of things you are asking about.  A simple illustration is shown below.  This programming environment is detailed in the Scripting Guide

     Help==>Books==>Scripting Guide

journal.PNGjournal.PNG

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );
nw = New Window( "Sample",
	<<journal,
	V List Box(
		H List Box(
			Oneway( Y( :height ), X( :sex ) ),
			Distribution(
				Stack( 1 ),
				Continuous Distribution( Column( :height ), Horizontal Layout( 1 ), Vertical( 0 ) )
			)
		),
		H List Box(
			Oneway( Y( :weight ), X( :sex ) ),
			Distribution(
				Stack( 1 ),
				Continuous Distribution( Column( :weight ), Horizontal Layout( 1 ), Vertical( 0 ) )
			)
		)
	)
);

Again, the above JSL is a very basic illustration of this facility in JMP.  Many other methods could have been used to accomplish this and far more complex outputs.

Jim
AdamChoen
Level IV

Re: Organize a journal via jsl

Thank you Jim
Thanks, Adam
AdamChoen
Level IV

Re: Organize a journal via jsl

 
Thanks, Adam

Recommended Articles