Data Filtering Help Needed?

1 回表示 (過去 30 日間)
Minjun Seo
Minjun Seo 2019 年 8 月 11 日
コメント済み: Minjun Seo 2019 年 8 月 11 日
Hi I have a data table that I loaded through the workspace.
I saved this table into a variable, let's say x.
Now in one specific column, it says Y for a yes and blank for a no.
How can I cut out the rows that have a blank space in that column?

採用された回答

Image Analyst
Image Analyst 2019 年 8 月 11 日
Try something like this:
col = 2; % Whatever it is...
theColumn = x{:, col}; % Extract column 2 as a cell array from the table.
rowsToDelete = contains(theColumn, ' ');
x(rowsToDelete, :) = []; % Delete all rows where a space was in col 2
If that doesn't work, attach x in a .mat array:
save('answers.mat', 'x');
and attach it with the paper clip icon.
  1 件のコメント
Minjun Seo
Minjun Seo 2019 年 8 月 11 日
Hi, I attached the data file above, maybe my wording was off but the method you provided did not work. I would also like to know how to delete the rows from the table and saving it to another place.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTables についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by