cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

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