Is There a Way to Execute splitapply Functionality on Subtables of Master Table?
3 ビュー (過去 30 日間)
古いコメントを表示
Suppose I have a function that operates on a table and returns a row vector:
function rowvec = myfunc(Table)
Suppose I have a master table, call it T with one of its variables being Name. I'd like to do something like the following to group by Name and concatenate rowvec computed from each subgroup:
G = findgroups(T.Name);
R = splitapply(@myfunc,T,G);
This won't work because splitapply sends the group of each variable in T to myfunc and not the subtable of T defined by G.
Is there already a function that does what I'm trying to do?
Or do I have to use the code here: https://www.mathworks.com/matlabcentral/answers/457422-separate-table-data-in-to-sub-tables to generate the cell array of subtables, loop over the subtables with a call to myfunc, and then concatenate the rows myself? Or maybe use cellfun on the cell array of subtables?
2 件のコメント
dpb
2020 年 5 月 10 日
I don't follow what's wrong with splitapply?
Show us an example that doesn't do the right thing.
回答 (1 件)
Peng Li
2020 年 5 月 10 日
you'd better do this way:
splitapply(@(x) sum(x, 1), T{:, 2:3}, G);
5 件のコメント
Peng Li
2020 年 5 月 11 日
It is not clear why you want to subtable your table before splitapply. splitapply is supposed to finish the job for you. Anyway, I'm happy that you found out the solution for your problem!
参考
カテゴリ
Help Center および File Exchange で Cell Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!