Statalist


[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]

st: re: data management


From   Kit Baum <[email protected]>
To   [email protected]
Subject   st: re: data management
Date   Thu, 27 Mar 2008 21:07:29 -0400

Sergiy said

> Raphael said
>
> I have 100 subjects with 6 obs each. I would like to create a new
> variable containing 1s for the first three obs and 2s for the
> remaining obs for each id.
>
>
> bysort id: gen x = cond( _n < 4, 1, 2)

and this raises the question, is _bysort_ stable? Because if it is
not, then not the first three of Raphael's observations get 1s, but
three random of each six get 1s. Stata's manual is silent about it,
but it seems to be the case. Quote:

"sort specifies that if the data are not already sorted by varlist, by
sort them."

Does anybody have more precise info? Is bysort stable?



This can be dealt with, presuming Raphael has an obs number for each reading on a subject, by doing

bysort id (obs): gen x ...

which will ensure that the observations for each ID are ordered 1,2,...,6.



Kit Baum, Boston College Economics and DIW Berlin
http://ideas.repec.org/e/pba1.html
An Introduction to Modern Econometrics Using Stata:
http://www.stata-press.com/books/imeus.html


*
* 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