HOW TO DATA FILTER
2 ビュー (過去 30 日間)
古いコメントを表示
Hello, I have a data of Patents from OECD in delimited text format with IPC code being one column, I want to filter the data by selecting only certain IPC codes in that column. Please, can anybody guide me doing it, also the IPC codes are string variables.
0 件のコメント
回答 (1 件)
Walter Roberson
2017 年 12 月 30 日
Probably the easiest way is to readtable() and then select only the rows where the desired codes are, probably using ismember
selected_data = TheTable(ismember(TheTable{:,ColumnNumber}, ListOfDesiredCodes))
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Instrument Control Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!