Statalist


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: st: Keep subsequent observations in panel data


From   Austin Nichols <[email protected]>
To   [email protected]
Subject   Re: st: Keep subsequent observations in panel data
Date   Mon, 5 Oct 2009 11:07:20 -0400

Nikolaos Kanellopoulos <[email protected]>:

clear
input i t y
 1      1     0
 1      2     0
 1      5     0
 1      6     0
 1      7     0
 1      8     0
 2      2     0
 2      5     0
 2      6     0
 2      7     0
 2      8     0
end
preserve
bys i (t):keep if t==_n
li
restore
preserve
bys i (t):keep if t==t[1]+_n-1
li

2009/10/5 Nikolaos Kanellopoulos <[email protected]>:
> Dear all,
>
> I have a very simple unbalanced panel, where individuals are allowed to drop in and out of the sample. I want to create two separate datasets with  the following sampling criteria.
>
> For the first one, individuals  that appear in the first wave should remain in the sample at subsequent years until the first time they drop out of the panel,
> either completely or not. If they rejoin the panel later these observations should not be used. For instance in the following example I want to keep only observations 129 and 130.
>
> +----------------------+
> i   t   y
> ----------------------
> 129.  1      1     0
> 130.  1      2     0
> 133.  1      5     0
> 134.  1      6     0
> 135.  1      7     0
> 136.  1      8     0
> +----------------------+
> 137.  2      2     0
> 138.  2      5     0
> 139.  2      6     0
> 140.  2      7     0
> 141.  2      8     0
> +----------------------+
>
> For the second dataset individuals should remain in the sample at subsequent years from the first time they are observed until the first time they drop out of the panel, either completely or return again. Again , if they rejoin the panel later these observations should not be used. For instance in the following example I want to keep only observations 129 to 130 and 137.
>
> +----------------------+
> i   t   y
> ----------------------
> 129.  1      1     0
> 130.  1      2     0
> 133.  1      5     0
> 134.  1      6     0
> 135.  1      7     0
> 136.  1      8     0
> +----------------------+
> 137.  2      2     0
> 138.  2      5     0
> 139.  2      6     0
> 140.  2      7     0
> 141.  2      8     0
> +----------------------+
>
>
> Thanks
> Nikos

*
*   For searches and help try:
*   http://www.stata.com/help.cgi?search
*   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