Hi,
(I had a similar topic on a different thread, but now its more to do with the ineqedco command. I also see a thread that that looks into this specific problem with ineqdeco, but the error code is different - r(2000) - https://www.statalist.org/forums/for...oo-many-values . Therefore, I post a new thread)
I am using the ineqdeco command to find inequality parameters. I have a very large panel dataset and I need the within and between inequality measures. Here is the structure of my data!
Year OrgId Person_id Person_Income
1 1 1 100
1 1 2 200
1 1 3 300
1 1 4 400
1 2 5 25
1 2 6 30
1 2 7 35
1 2 8 40
2 3 9 10
2 3 10 15
2 3 11 20
2 3 12 25
I use the following code:
being a large panel (?), the ineqdeco throws an error: "too many values". r(134)
Is there any way to get around this problem?
Thanks,
(I had a similar topic on a different thread, but now its more to do with the ineqedco command. I also see a thread that that looks into this specific problem with ineqdeco, but the error code is different - r(2000) - https://www.statalist.org/forums/for...oo-many-values . Therefore, I post a new thread)
I am using the ineqdeco command to find inequality parameters. I have a very large panel dataset and I need the within and between inequality measures. Here is the structure of my data!
Year OrgId Person_id Person_Income
1 1 1 100
1 1 2 200
1 1 3 300
1 1 4 400
1 2 5 25
1 2 6 30
1 2 7 35
1 2 8 40
2 3 9 10
2 3 10 15
2 3 11 20
2 3 12 25
I use the following code:
Code:
local years_w 1999 2000......2013 foreach y of local years_w { qui ineqdeco Person_Income if year == `y', by(Person_id) }
Is there any way to get around this problem?
Thanks,
Comment