Dear All
i can't seem to find Monte Carlo Simulation method in SPSS version 17 that i am using now. Not sure is it because i am using the base module with no advanced stats module as add on. i wish to know how can i ue monte carlo simulation method to test confidence interval for completion rates? thanks in advance ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD |
Michelle,
Not to be snarky, but that's because native spss does not have monte carlo simulation command or procedure like frequencies or crosstabs. That said, you can certainly use spss to do monte carlo simulations. I know people will respond with suggestions. I'd suggest the you search the spss list archives which are at <http://listserv.uga.edu/archives/spssx-l.html>. You might also look at the data management book that Ray <I've forgotten his last name> wrote and published and is (or used to be) supplied on the spss distribution cd. All that said, I'd bet that people also have written python implementations of monte carlo. >>i wish to know how can i ue monte carlo simulation method to test confidence interval for completion rates? I expect the answer is yes but I don't know what you mean by 'completion rates' Gene Maguin -----Original Message----- From: SPSSX(r) Discussion [mailto:[hidden email]] On Behalf Of Michelle Tan Sent: Tuesday, May 24, 2011 9:22 PM To: [hidden email] Subject: Monte Carlo Simulation method Dear All i can't seem to find Monte Carlo Simulation method in SPSS version 17 that i am using now. Not sure is it because i am using the base module with no advanced stats module as add on. i wish to know how can i ue monte carlo simulation method to test confidence interval for completion rates? thanks in advance ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD |
In reply to this post by Michelle Tan
Many kinds of monte carlo simulation can be
done using
INPUT PROGRAM LOOP and compute with one of a few dozen random variable functions. e.g., compute x = rv.normal(22,5). compute ranvar= rv.uniform(0, 2e31). here is a simulation of throwing conventional dice. * throw 2 dice. *show crosstab and scatterplots. SET SEED=20100723. NEW FILE. INPUT PROGRAM . LOOP id=1 to 155. COMPUTE die1=RND(RV.UNIFORM(.5,6.5)). COMPUTE die2=RND(RV.UNIFORM(.5,6.5)). END CASE. END LOOP. END FILE. END INPUT PROGRAM. FORMATS DIE1 DIE2 (F1). VARIABLE LEVEL die1 die2 (nominal). CROSSTAB TABLES= DIE1 BY DIE2 /CELLS=count. CROSSTAB TABLES= DIE1 BY DIE2 /CELLS=ALL. Art Kendall Social Research Consultants On 5/24/2011 9:22 PM, Michelle Tan wrote: ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARDDear All i can't seem to find Monte Carlo Simulation method in SPSS version 17 that i am using now. Not sure is it because i am using the base module with no advanced stats module as add on. i wish to know how can i ue monte carlo simulation method to test confidence interval for completion rates? thanks in advance ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD
Art Kendall
Social Research Consultants |
I am out of office Wednesday May 25 to Tuesday May 31.
I will be checking mails intermittently. If you need urgent assistance please contact Barbara Bilodeau.
Jason Lee Sr. Manager, Customer Insights Group Bain & Company
|
In reply to this post by Maguin, Eugene
I believe this is the link you are looking for.
http://www.spsstools.net/ Thanks, "Sent from my iPad" On May 25, 2011, at 8:26 AM, Gene Maguin <[hidden email]> wrote: > Michelle, > > Not to be snarky, but that's because native spss does not have monte carlo > simulation command or procedure like frequencies or crosstabs. That said, > you can certainly use spss to do monte carlo simulations. I know people will > respond with suggestions. I'd suggest the you search the spss list archives > which are at <http://listserv.uga.edu/archives/spssx-l.html>. You might also > look at the data management book that Ray <I've forgotten his last name> > wrote and published and is (or used to be) supplied on the spss distribution > cd. All that said, I'd bet that people also have written python > implementations of monte carlo. > >>> i wish to know how can i ue monte carlo simulation method to test > confidence interval for completion rates? > > I expect the answer is yes but I don't know what you mean by 'completion > rates' > > Gene Maguin > > > -----Original Message----- > From: SPSSX(r) Discussion [mailto:[hidden email]] On Behalf Of > Michelle Tan > Sent: Tuesday, May 24, 2011 9:22 PM > To: [hidden email] > Subject: Monte Carlo Simulation method > > Dear All > > i can't seem to find Monte Carlo Simulation method in SPSS version 17 that > i am using now. Not sure is it because i am using the base module with no > advanced stats module as add on. > > i wish to know how can i ue monte carlo simulation method to test > confidence interval for completion rates? > > thanks in advance > > ===================== > To manage your subscription to SPSSX-L, send a message to > [hidden email] (not to SPSSX-L), with no body text except the > command. To leave the list, send the command > SIGNOFF SPSSX-L > For a list of commands to manage subscriptions, send the command > INFO REFCARD > > ===================== > To manage your subscription to SPSSX-L, send a message to > [hidden email] (not to SPSSX-L), with no body text except the > command. To leave the list, send the command > SIGNOFF SPSSX-L > For a list of commands to manage subscriptions, send the command > INFO REFCARD ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD |
Free forum by Nabble | Edit this page |