cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • 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!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.
  • See how to access JMP Marketplace - and - find, create & share add-ins to extend your JMP. Watch video.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar

Spinning a Scatterplot 3D

I have a point cloud created in the JMP Scatterplot 3D platform.

Two question: I want to drive the rotation using JSL so that it only rotates around the Z axis.

How do I do that?

I want to save the result as an video.

How do I do that?

Thanks, Al Best

founder of the JMP training curriculum

3 REPLIES 3
rabelardo
Level IV

Re: Spinning a Scatterplot 3D

I, too, would like to know how this can be achieved.

Also, how can I make the 3d scatterplot rotate left to right and disable the up and down tilting - something like a navigation control (is this doable within the 3d scatterplot platform?).

Thanks.

- Randy, JMP newbie

- Randy
txnelson
Super User

Re: Spinning a Scatterplot 3D

Here is the example script from the Help==>JMP Scripting==>Scatterplot 3D==>Frame3D==>Set Spin    that demonstrates how to spin the graph using JSL.  As far as making a video, There is shareware that will record to video the activity in a displayed window.  You may want to try      CamStudio - Free Screen Recording Software

Names Default To Here( 1 );

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

obj = Scatterplot 3D(

       Y(

              :Sepal length,

              :Sepal width,

              :Petal length,

              :Petal width

       )

);

obj << Frame3D(

       Set Rotation( -60, -3, 35 ),

       Set Oscillation( -54, 0, 38, 100 )

);

Jim
rabelardo
Level IV

Re: Spinning a Scatterplot 3D

Thanks so much, Jim !

I prefer the Set Spin command since the graph will rotate continuously (though it would be nice if there's a way to manipulate the speed or duration like that of the Set Oscillation command).

I will now consult the Help > Scripting Index as my guide.

Again, much appreciated !

- Randy, JMP newbie

12006_spin.gif

- Randy

Recommended Articles