Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SV: st: Deleting entire panel id/group if condition is true for first year
From
Andreas Dall Frøseth <[email protected]>
To
"[email protected]" <[email protected]>
Subject
SV: st: Deleting entire panel id/group if condition is true for first year
Date
Wed, 1 May 2013 14:14:31 +0000
Maybe I'm applying it wrong, but this does not seem to do that I want. I may have described it a bit to badly.
So, here's an example.
At this point my set is containing all companies with a run equal to or above 6 years. I identify these by using -tsspell- (SSC), and then "egen length = max(_seq), by(orgnr _spell)" (orgnr is the identifyer), and drop the unwanted companies by "drop if length<6"
However, I also wish to drop entire panel groups (all six years for a company) if the variable "category" has a missing value the first year in the six year run. Leaving me with companies with runs equal to and above 7 years, in addition to companies with 6 year runs which have a value listed in the variable "category" the first year.
I hope this was a better explanation. Pardon me in advance if the only reason that your previous code doesn't work is due to my incompetence...
-Andreas
________________________________________
Fra: [email protected] [[email protected]] på vegne av Nick Cox [[email protected]]
Sendt: 1. mai 2013 15:34
Til: [email protected]
Emne: Re: st: Deleting entire panel id/group if condition is true for first year
Stata makes this kind of change extremely easy.
bysort id (whatever) : keep if !missing(whatever[_N]) & _N >= 6
-sort-ing within panels means that any missings are sorted to last.
This is covered in any tutorial on -by:-.
Nick
[email protected]
On 1 May 2013 14:14, Andreas Dall Frøseth <[email protected]> wrote:
>
> Is it possible to delete a entire panel id/group from the set if a certain condition is true for the first year?
> I'm trying to keep certain spells in my dataset, and by using the -tsspell- (SSC) I have managed to keep panel variables with runs equal or above 7 years. But, I also wish to keep panel groups with 6 year runs IF the value in the variable "category" is nonmissing for the first year (or actually every year).
*
* For searches and help try:
* http://www.stata.com/help.cgi?search
* http://www.stata.com/support/faqs/resources/statalist-faq/
* http://www.ats.ucla.edu/stat/stata/
*
* For searches and help try:
* http://www.stata.com/help.cgi?search
* http://www.stata.com/support/faqs/resources/statalist-faq/
* http://www.ats.ucla.edu/stat/stata/