cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
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.