- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Add Random Seed to prediction formula
I would like make a reproducible simulation formula by adding a the same random number to a prediction formula .Guess this is possible with Random seed? I olnly find a very brief explanation in JMP help; how to add this random seed to a formula?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Add Random Seed to prediction formula
Remark: there is a selectivity > 100%, still have to adjust formula a bit to keep results < 100%
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Add Random Seed to prediction formula
If you can't add that random value column to the table which students are using, I think you could use Random Reset(Row()) (you can change the Row() to something else, but it should still be Row() dependent and not randomized, so Row()*Row() or Row() + 10 are for example fine).
Column 8 just demonstrates the random reset + random normal part
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Add Random Seed to prediction formula
Great, works fine, thank Jarmo!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Add Random Seed to prediction formula
A small input, I use this to prevent the constant reset of the seed:
If( Row() == 1,
Random Reset( 500 )
);Random Normal( 5, 0.5 );
After the reset, the sequence is always the same "random" numbers within a JMP version.
- GLaDOS
- « Previous
-
- 1
- 2
- Next »