cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

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

Scatterplot 3D tiff resolution

Dear community,

 

I wish to export a 3D scatter plot at a high resolution. Once I do this (600 or 1200 dpi) the data frame is clean, but the actual plotted data and axis are still pixelated. See attached image.

 

Is there a method for exporting 3D plots in high resolution?

Thank you,

-Lucas

1 ACCEPTED SOLUTION

Accepted Solutions
ih
Super User (Alumni) ih
Super User (Alumni)

Re: Scatterplot 3D tiff resolution

Try resizing the graph (make it larger) before saving the image rather than changing the dpi of the saved image.  With a script you can make the image much larger than your monitor size.

 

Names default to here(1);
dt = Open("$SAMPLE_DATA/iris.jmp");
s3d = dt << Scatterplot 3D(
	Y( :Sepal length, :Sepal width, :Petal length, :Petal width ),
	Frame3D( Set Graph Size( 2000, 2000 ) )
);
s3d << Save Picture("$DESKTOP/image.png","png");

View solution in original post

2 REPLIES 2
ih
Super User (Alumni) ih
Super User (Alumni)

Re: Scatterplot 3D tiff resolution

Try resizing the graph (make it larger) before saving the image rather than changing the dpi of the saved image.  With a script you can make the image much larger than your monitor size.

 

Names default to here(1);
dt = Open("$SAMPLE_DATA/iris.jmp");
s3d = dt << Scatterplot 3D(
	Y( :Sepal length, :Sepal width, :Petal length, :Petal width ),
	Frame3D( Set Graph Size( 2000, 2000 ) )
);
s3d << Save Picture("$DESKTOP/image.png","png");

Re: Scatterplot 3D tiff resolution

Thank you. I will try this asap.

Recommended Articles