发布日期: 04/13/2021

Scatterplot 3D

If your machine supports acceleration, and you want to display the 3-D scatterplot faster, you can turn on the Use Hardware Acceleration option, or in JSL, specify the Scene3DHardwareAcceleration global variable. A value of 1 turns it on, and a value of zero turns it off.

dt = Open( "$SAMPLE_DATA/Solubility.jmp" );
Scene3DHardwareAcceleration = 1;
dt << Scatterplot 3D(
	Y( :Name( "1-Octanol" ), :Ether, :Chloroform, :Benzene, :Carbon Tetrachloride, :Hexane )
);
需要更多信息?有问题?从 JMP 用户社区得到解答 (community.jmp.com).