Monte Carlo Simulation method

classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

Monte Carlo Simulation method

Michelle Tan
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
Reply | Threaded
Open this post in threaded view
|

Re: Monte Carlo Simulation method

Maguin, Eugene
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
Reply | Threaded
Open this post in threaded view
|

Re: Monte Carlo Simulation method

Art Kendall
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:
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
Art Kendall
Social Research Consultants
Reply | Threaded
Open this post in threaded view
|

Automatic reply: Monte Carlo Simulation method

Lee, Jason (Customer Insights Group)

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.


Thank you,

Jason Lee

Sr. Manager, Customer Insights Group

Bain & Company

 

__________________NOTICE_______________ This electronic mail transmission, including any attachments, contains confidential information of Bain & Company, Inc. ("Bain") and/or its clients. It is intended only for the person(s) named, and the information in such e-mail shall only be used by the person(s) named for the purpose intended and for no other purpose. Any use, distribution, copying, or disclosure by any other persons, or by the person(s) named but for purposes other than the intended purpose, is strictly prohibited. If you received this transmission in error, please notify the sender by reply e-mail and then destroy this e-mail. Opinions, conclusions and other information in this message that do not relate to the official business of Bain shall be understood to be neither given nor endorsed by Bain. When addressed to Bain clients, any information contained in this e-mail shall be subject to the terms and conditions in the applicable client contract.
Reply | Threaded
Open this post in threaded view
|

Re: Monte Carlo Simulation method

Michael Tappler
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