Search found 3 matches
- Wed Apr 11, 2018 11:04 pm
- Forum: Programming
- Topic: Converting some stata code to eviews code
- Replies: 0
- Views: 63
Converting some stata code to eviews code
Hi, I'm using IFLS 5 data and want to merging some data. My friend give me these codes to perform it in stata, but i want to perform it in eviews. global ifls5 "/Users/GHBS/Documents/IFLS/IFLS 5/household" global kompilasi "/Users/GHBS/Documents/Work/Asisten Semester 9/Ekonometrika ME...
- Wed Apr 11, 2018 10:45 pm
- Forum: Data Manipulation
- Topic: Generate series by sort
- Replies: 3
- Views: 146
Re: Generate series by sort
Ok, thank you startz.. Then, if I would like to generate lagged series in every household, what command that should I use? like: if a household has 5 members, and their age is 1; 2; 3; 4; 5, I would like to make series that contain age(-1), that is NA;1;2;3;4. The household id is an alphanumeric (te...
- Wed Apr 11, 2018 6:54 pm
- Forum: Data Manipulation
- Topic: Generate series by sort
- Replies: 3
- Views: 146
Generate series by sort
Hello I'm using IFLS data that contains more than 15000 household data and every household has some person. I want to get the oldest age of person in every household. My friend teach me to use stata with syntax: Bysort hhid14: egen maxage=max(age) With hhid14 is household id maxage is series to be g...