Scripting Guide > Scripting Platforms > Save Platform Settings as a Platform Preset
Publication date: 07/24/2024

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();
Want more information? Have questions? Get answers in the JMP User Community (community.jmp.com).