Scripting Guide > Scripting Platforms > Save Platform Settings as a Platform Preset
发布日期: 03/04/2025

Save Platform Settings as a Platform Preset

Once you have configured an analysis, you can save that configuration for later use as a platform preset. The following example saves a Oneway analysis with a t Test report as a platform preset object using the << New Preset message. This object can be passed to << Apply Preset to copy the settings from one object to another object of the same type.

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
obj = dt << Oneway( Y( :height ), X( :sex ), t Test( 1 ) );
preset = obj << New Preset();
需要更多信息?有问题?从 JMP 用户社区得到解答 (community.jmp.com).