Found an addin: https://community.jmp.com/t5/JMP-Add-Ins/Random-Seed-Reset/ta-p/21973
For simple values:
Names Default To Here( 1 );
Random Reset( 1 );
Random Normal();
For an object:
obj << Set Seed( 1111 );
For a platform:
dt = Open( "$SAMPLE_DATA/Boston Housing.jmp" );
obj = Partition(
Y( :chas ),
X( :crim, :zn, :indus, :mvalue, :nox, :rooms, :age, :distance, :radial ),
Method( "Bootstrap Forest" ),
Set Random Seed( 1234 ),
Go
);
Try Random Seed in the scritping index for further info:
"I thought about our dilemma, and I came up with a solution that I honestly think works out best for one of both of us"
- GLaDOS