cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
AdamChoen
Level III

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.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.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 III

Re: Organize a journal via jsl

Thank you Jim
Thanks, Adam
AdamChoen
Level III

Re: Organize a journal via jsl

 
Thanks, Adam