How to run a function for each id (in unbalanced panel data).

2 次查看(过去 30 天)
Hello,
I am brand new in matlab, and I would like to run a function (user-written) for each id in a unbalanced panel database (N x T) .
The function is the Shanken correction (1992) to get EIV-bias free estimates. What I am struggling with is to loop the function for every id. Or the otherway around, to split the data by id to run the function in each split?
Any ideas how to deal with this?
  1 个评论
Stephane Dauvillier
Hi Ricardo,
I'm not sure I've understood your question.
If you want to apply a function for each value of identification, for example if you have an id vector and a vector of exapense and you want to compute the have the sum of expense you can use the function splitapply.
id = [ 1; 2; 1; 1; 2; 3];
expense = [10; 5;20; 8;90;88];
sumPerId = splitapply( @sum, expense, id) ;
% sumPerId will be equal 10+20+8 = 38 for id1
% 5+90 = 95 for id2
% 88 = 88 for id3
Is this what you want to do ?

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息

产品


版本

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by