Statalist The Stata Listserver


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

st: RE: check if variable is constant within id


From   "Nick Cox" <[email protected]>
To   <[email protected]>
Subject   st: RE: check if variable is constant within id
Date   Wed, 16 May 2007 13:46:04 +0100

I am pleased to hear that you don't want 
a program to do this. 

First without missings, 

bysort id (var1) : assert var1[1] == var1[_N] 

checks that values of var1 are constant 
within id. 

Second with missings, we need to set missings
on one side: 

gen byte ismiss = missing(var1) 
bysort ismiss id (var) : assert var1[1] == var1[_N] 

That's two lines. Perhaps someone can shorten it. 

But the solutions here can be worked out from 
this FAQ, which says more that I won't repeat here: 

How do I list observations in a group that differ on a variable? 
http://www.stata.com/support/faqs/data/diff.html

My suggestion to you is to scan the FAQs before
posting.  

Nick 
[email protected] 

Mak, Timothy
 
> I'm looking for an easy way to check if all the observations for a
> particular variable (say var1) within id (a subject identifying
> variable) are constant a) for the case where missings can be excluded,
> and b) for the case where missings cannot be excluded. The best answer
> would be a one-liner, with a short display. I don't want a 
> program to do
> this.  

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