cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

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