| |
[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]
Re: Re: st: Re: ifcmd question
Note also that this problem is documented at
I have an if command in my program that only seems to evaluate the first
observation. What's going on?
http://www.stata.com/support/faqs/lang/ifqualifier.html
Nick
[email protected]
Robert Duval
This does the trick...
Michael Blasnik
> ..Not completely clear what you want, but if x>1 evaluates the first
> observation of x and compares that to 1, it doesn't look for any x > 1.
> Here's something that might do what you want:
>
> sum x, meanonly
> if r(max)>1 save hola.dat
Robert Duval
> > I am trying to pass a command to a whole dataset if a variable takes
> > certain values... For instance I would like Stata to save a file
> > hola.dat if variable x takes values >1...
> >
> > I tried
> >
> > if x>1 {
> > save hola.dat
> > }
> >
> > but at execution Stata doesn't do anything.
> >
> > Please note I don't want to filter obs. I just want the program to
> > save the current file under a given name if one of its variables takes
> > certain values.
> >
> > The problem is that ifcmd evaluates an exp and the command save
> > applies to the whole dataset and not to a subset of obs.
> >
*
* 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/