Join Multiple Tables horizontally (can have duplicate variables) in which some tables might be empty.
39 ビュー (過去 30 日間)
古いコメントを表示
Hello All,
I want to Join Multiple Tables horizontally (can have duplicate variables) in which some tables might be empty.
How to do that ?
TIA!!!
0 件のコメント
回答 (1 件)
Benjamin Kraus
2023 年 2 月 22 日
編集済み: Benjamin Kraus
2023 年 2 月 22 日
If your goal is to simply concatenate two tables, such that the first row of each table is combined into the first row of the output, the second row of each table is merged into the second row of the output, etc. all you need is to use the [] operator. That is, assuming they are the same height, or one of the tables is empty, and none of the tables have duplicate variable names. However, it is easy to fix duplicate variable names.
Consider this example:
t1 = table((1:10)')
t2 = table((11:20)')
t3 = table()
% Append a prefix to table variable names to avoid duplicate names.
t1.Properties.VariableNames = "t1." + t1.Properties.VariableNames
t2.Properties.VariableNames = "t2." + t2.Properties.VariableNames
% Now concatenate the three matrices:
t = [t1 t2 t3]
If your goal is more of a "join" operation, in which you use the value in one variable of each table as a key to match rows from multiple tables, you want to look into the different ways to Join Tables, including the innerjoin, outerjoin, and join commands.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!