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
Theresa
Level IV

How can i enlarge the default size of picture?

*If i think the default picture size is small and i want to enlarge it, what should i do ?

 

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Bivariate( Y( :weight ), X( :height ) );

 

 

*The script i use to control the size is below, but the pic has no change after i add size(1000, 800), Why it now work?

 

Names Default To Here( 1 );

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

Bivariate(
	Size( 1000, 800 ), 

	Y( :weight ),
	X( :height )
);

 

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: How can i enlarge the default size of picture?

You can change the size of all graphic window's defaults in JMP Preferences

     File==>Preferences==>Graphs

If you want to change just the scatterplot window in the Bivariate Plot you need to change the Frame size.

names default to here(1);
dt=open("$SAMPLE_DATA/big class.jmp");
biv=Bivariate( Y( :height ), X( :weight ) );
report(biv)[FrameBox(1)] << frame size(400,400);

See the Scripting Index for examples 

     Help=>Scripting Index

Jim

View solution in original post

2 REPLIES 2
txnelson
Super User

Re: How can i enlarge the default size of picture?

You can change the size of all graphic window's defaults in JMP Preferences

     File==>Preferences==>Graphs

If you want to change just the scatterplot window in the Bivariate Plot you need to change the Frame size.

names default to here(1);
dt=open("$SAMPLE_DATA/big class.jmp");
biv=Bivariate( Y( :height ), X( :weight ) );
report(biv)[FrameBox(1)] << frame size(400,400);

See the Scripting Index for examples 

     Help=>Scripting Index

Jim
Theresa
Level IV

Re: How can i enlarge the default size of picture?

Thank you!