フィルターのクリア

Finding the mean of subsets within cellarrays

2 ビュー (過去 30 日間)
Léon
Léon 2012 年 10 月 28 日
Hello,
I have a panel dataset as a cellarray and one cell column represents the index of a data subset within this array (long format). Now I want to create a vector with the mean of each subset. I tried the following but this does not work completely and I would be more than happy if you could help me out here. I did that several times in STATA, but there you can handle panel data directly and specify an index variable in your dataset, obviously you have to do the work in Matlab completely by yourself. :(
Regards!
x = {'A',2.5;'A',5.0;'B',2.6}
y = unique(x(:,1))
mean = zeros(length(y),1)
for i = 1:length(y)
mean(i) = mean(x(x{:,2}==y(i)));
end

採用された回答

Andrei Bobrov
Andrei Bobrov 2012 年 10 月 29 日
[a,c,c] = unique(x(:,1));
avgx = [a,num2cell(accumarray(c,cell2mat(x(:,2)),[],@mean))];

その他の回答 (2 件)

Jing
Jing 2012 年 10 月 29 日
Hi,
In your code, you can't index into a cell array using ':', and if you want to use the build-in MEAN function, you should not define a variable as 'mean', because MATLAB will treat it as a variable first. I think the following code can complete your goal.
x = {'A',2.5;'A',5.0;'B',2.6};
y = unique(x(:,1))
avgx= zeros(length(y),1);
for i = 1:length(y)
avgx(i)=mean(cell2mat(x(strcmp(y{i},x(:,1)),2)));
end

Léon
Léon 2012 年 10 月 29 日
編集済み: Léon 2012 年 10 月 29 日
This is exactly what I've been searching for and the speed of that is amazing. Thank you very much! :)
May I ask a question that builds on top of that?
Is it possible to apply the function on a sub-sub-set as well? Considering we have an additional date vector:
day = (28;29;30);
can we compute the mean within the subgroup, but day wise?
  1 件のコメント
Jing
Jing 2012 年 10 月 30 日
What do you mean by day-wise?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by