Stata The Stata listserver
[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]

RE: st: item response


From   "Nick Cox" <[email protected]>
To   <[email protected]>
Subject   RE: st: item response
Date   Mon, 7 Jul 2003 09:29:00 +0100

[email protected]
 
> > I am trying to create a weight variable to use with the 
> gllamm command,
> > but I just can't get it to work. Here is the problem: I 
> have the data in
> > long format looking like this:
> > 
> > subj_id         item_number     item_response
> > 1               1               0
> > 1               2               1
> > 1               3               0
> > 2               1               1
> > 2               2               1
> > 2               3               0
> > 
> > I am trying to create a weight variable that represents 
> the number of
> > subjects with the same item_response pattern, meaning the 
> same responses
> > for all items within an individual.

SamL
 
> In Stata 7 I believe the -contract- command is what you would use.

I don't think -contract- helps without a prior -reshape-. 
I would do this:  

reshape wide item_response, i(subj_id) j(item_number) 
bysort item_response* : gen weight = _N 


Nick 
[email protected] 

*
*   For searches and help try:
*   http://www.stata.com/support/faqs/res/findit.html
*   http://www.stata.com/support/statalist/faq
*   http://www.ats.ucla.edu/stat/stata/



© Copyright 1996–2024 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index