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

RE: st: repeated values of a variable


From   Richard Williams <[email protected]>
To   [email protected]
Subject   RE: st: repeated values of a variable
Date   Wed, 17 Mar 2004 07:02:53 -0500

At 10:17 AM 3/17/2004 +0000, Nick Cox wrote:
Note that

. bysort id : drop if _N == 1

is (nearly) equivalent. It's more direct;
but note the side-effect of -sort-ing.
That is good. In general, data sets should have id numbers; sort commands can be a little scary without them, and ado files may sort your data without your knowledge. It would be sort of a shame if you had thousands of survey questionnaires coded and then couldn't link the data back to their original sources.

If missing data on id is a concern, modify the above to

bysort id : drop if _N == 1 | missing(id)


-------------------------------------------
Richard Williams, Notre Dame Dept of Sociology
OFFICE: (574)631-6668, (574)631-6463
FAX: (574)288-4373
HOME: (574)289-5227
EMAIL: [email protected]
WWW (personal): http://www.nd.edu/~rwilliam
WWW (department): http://www.nd.edu/~soc

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