there is nan in a column, delete the whole row

14 views (last 30 days)
I have a data base called data_crsp, and there might be some nan values in c.lagpe column (column 18), I want the whole row of data to be romoved if there is nan in column 18.
Thanks in advance!
  2 Comments
the cyclist
the cyclist on 5 Aug 2022
I'm confused, because you refer to a "data base" data_crsp, but that's not a MATLAB object type.Then you refer to c.lagpe, but it's not clear what c is.

Sign in to comment.

Accepted Answer

Chunru
Chunru on 5 Aug 2022
idx = isnan(c.lagpe); % find the index of nan
c(idx, :) =[]; % remove the rows from table

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!