cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • See how to use the JMP Marketplace – Free tools to expand JMP capabilities. Register. July 10, 2 pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
ron_horne
Super User (Alumni)

size to isometric - is it scriptable?

hi All,

Is there a script command i can write to produce a graph with isometric scale?

When I make a graph and select "size to isometric" the script it produces does not insure an isometric graph if the data has changed.

thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
ms
Super User (Alumni) ms
Super User (Alumni)

Re: size to isometric - is it scriptable?

Send the command to the FrameBox.

For example:

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

biv = Bivariate(Y(:weight), X(:height));

Report(biv)[FrameBox(1)] << size to isometric;

View solution in original post

2 REPLIES 2
ms
Super User (Alumni) ms
Super User (Alumni)

Re: size to isometric - is it scriptable?

Send the command to the FrameBox.

For example:

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

biv = Bivariate(Y(:weight), X(:height));

Report(biv)[FrameBox(1)] << size to isometric;

ron_horne
Super User (Alumni)

Re: size to isometric - is it scriptable?

Thanks! i was looking for that for a while.

Recommended Articles