cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. ET on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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!

Recommended Articles