Borrar filtros
Borrar filtros

HOW TO DATA FILTER

7 visualizaciones (últimos 30 días)
Saptorshee Chakraborty
Saptorshee Chakraborty el 30 de Dic. de 2017
Respondida: Walter Roberson el 30 de Dic. de 2017
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.

Respuestas (1)

Walter Roberson
Walter Roberson el 30 de Dic. de 2017
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))

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by