Borrar filtros
Borrar filtros

How to delete rows with incomplete data in a csv file

17 visualizaciones (últimos 30 días)
ILoveML
ILoveML el 5 de Feb. de 2020
Respondida: Neeraj Kulkarni el 15 de Sept. de 2020
Have lots of csv files with the same data structure: 52 columns (some empty ones in between) and thousands rows.
Was wondering whether there is qucik way to delete the rows with incomplete data (meaning no data for some parameters/columns) and save the csv file with Matlab scripts.
For example, the attached data.csv file has incomplete data starting Row #29 (included) onwards. Thus, the script will delete Row #29 and above and save the csv file.
Thanks!
ILoveML

Respuestas (1)

Neeraj Kulkarni
Neeraj Kulkarni el 15 de Sept. de 2020
Hi,
Please refer to following example to clean messy and missing data in tables:
Below is an example code to remove incomplete rows:
dataTable = readtable('data.csv');
dataTable = rmmissing(dataTable);
writetable(dataTable,'data.csv');

Categorías

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

Etiquetas

Productos


Versión

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by