Seperate the data of a table
1 回表示 (過去 30 日間)
古いコメントを表示
Hello,
I have a table and would like to get out the specific lines based on chosen strings of the first and second column. Means when you look at the attached picture, I would like to have e.g. all the lines with 'Fossil Gas' and 'NO_1' and maybe build them up in a new table or better just take out the values of the last column.
Thank you for the answer! :)
0 件のコメント
採用された回答
jonas
2018 年 10 月 23 日
編集済み: jonas
2018 年 10 月 23 日
Just use logical indexing
T{strcmp(T{:,1},'Fossil Gas'),end}
The line
strcmp(T{:,1},'Fossil Gas')
returns a logical vector where rows matching the target string are true. This vector is then used to extract values from the last (end) column.
Depending on what you are trying to do, it may be wise to use the first column as a grouping variable, and evaluate the other columns group-wise.
4 件のコメント
jonas
2018 年 10 月 23 日
編集済み: jonas
2018 年 10 月 23 日
My pleasure! Your data set indeed seems ideal for grouping. To get you started, you can look into the following functions
- findgroups & splitapply
- varfun
- grpstats
They are three different functions for evaluating grouped data. If I had to pick one... I would probably go for varfun.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!