monte carlo resapling simulation for mean and std dev jmp 14
I am having trouble debugging the portion on resampling. Help would be appreciated. dt=Current Data Table();
n=N Row(dt);
nSim=1000;
dtMC=New Table("MC", New Column ("Sim", Numeric, "Continuous"), New Column ("Mean", Numeric, "Continuous"), New Column ("Std Dev", Numeric, "Continuous");
For(i=1, i<=nSim, i++,
dtResample=dt<<Resample(Size(n), With Replacement(1), Seed(i));
dtMC<<Add Rows(1);
dtMC:Sim[i]=...