Randamization in spss

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

Randamization in spss

Yogi
I had a Question,in that there are 10 statements ,from those statements 2 and 3 are together and 5 and 6 are together to be asked ,and the rest of them are asked randamly.I received the data.I need spss syntax code for that?
Reply | Threaded
Open this post in threaded view
|

Randamization in spss

Yogi
In a MULTIPLE RESPONSE Question,
there are 1 to 13 statements.....(like var1 to var 13)
from that RANDOMIZE KEEPING 2 & 3 TOGETHER AND 5 & 10 TOGETHER AND 11-13 TOGETHER.
what is the spss syntax for that scenario?
Reply | Threaded
Open this post in threaded view
|

Re: Randamization in spss

Bruce Weaver
Administrator
I don't understand what you mean when you say you want to RANDOMIZE.  Can you provide a brief example showing input and desired output?  Thanks.


Yogi wrote
In a MULTIPLE RESPONSE Question,
there are 1 to 13 statements.....(like var1 to var 13)
from that RANDOMIZE KEEPING 2 & 3 TOGETHER AND 5 & 10 TOGETHER AND 11-13 TOGETHER.
what is the spss syntax for that scenario?
--
Bruce Weaver
bweaver@lakeheadu.ca
http://sites.google.com/a/lakeheadu.ca/bweaver/

"When all else fails, RTFM."

PLEASE NOTE THE FOLLOWING: 
1. My Hotmail account is not monitored regularly. To send me an e-mail, please use the address shown above.
2. The SPSSX Discussion forum on Nabble is no longer linked to the SPSSX-L listserv administered by UGA (https://listserv.uga.edu/).
Reply | Threaded
Open this post in threaded view
|

Re: Randamization in spss

David Marso
Administrator
Indeed.  This query is unparsable!
Bruce Weaver wrote
I don't understand what you mean when you say you want to RANDOMIZE.  Can you provide a brief example showing input and desired output?  Thanks.


Yogi wrote
In a MULTIPLE RESPONSE Question,
there are 1 to 13 statements.....(like var1 to var 13)
from that RANDOMIZE KEEPING 2 & 3 TOGETHER AND 5 & 10 TOGETHER AND 11-13 TOGETHER.
what is the spss syntax for that scenario?
Please reply to the list and not to my personal email.
Those desiring my consulting or training services please feel free to email me.
---
"Nolite dare sanctum canibus neque mittatis margaritas vestras ante porcos ne forte conculcent eas pedibus suis."
Cum es damnatorum possederunt porcos iens ut salire off sanguinum cliff in abyssum?"
Reply | Threaded
Open this post in threaded view
|

Re: Randamization in spss

Rich Ulrich
In reply to this post by Yogi
My guess is that you want a "random order" that tells you what
order you should ask the questions.  (This is not what was implied
by the other post that said "I have the data.")

To get a random sequence, you can list the Q's as lines of data;
compute a random number; sort by the random number; and list.

BEGIN DATA.
1
2&3
4
5&10
6
7
8
9
11-13
END DATA.

COMPUTE  rand= rv.uniform(0,1).
SORT CASES   by rand.
LIST .

Is that what you want?  There are ways to do this multiple times,
conveniently, if this is what you are looking for.

Searching < SPSS random sort >  got me to
http://spssx-discussion.1045642.n5.nabble.com/How-to-sort-cases-randomly-instead-of-ascending-or-descending-order-two-step-cluster-tp5727968p5727973.html

--
Rich Ulrich


> Date: Mon, 9 Nov 2015 13:15:55 -0700

> From: [hidden email]
> Subject: Randamization in spss
> To: [hidden email]
>
> In a MULTIPLE RESPONSE Question,
> there are 1 to 13 statements.....(like var1 to var 13)
> from that RANDOMIZE KEEPING 2 & 3 TOGETHER AND 5 & 10 TOGETHER AND 11-13
> TOGETHER.
> what is the spss syntax for that scenario?
>
>
===================== 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