How do I remove rows with NaNs from my raw data?
조회 수: 1 (최근 30일)
이전 댓글 표시
I have opened my excel data with xlsread and would like to remove all rows containing a NaN. Is there a possibility to do this at once? my data looks like this:
information blabla NaN NaN information blabla NaN NaN
NaN NaN NaN
Mydata Mydata Mydata My Data Mydata Mydata Mydata My Data Mydata Mydata NaN My Data Mydata Mydata Mydata My Data Mydata Mydata Mydata NaN Mydata Mydata Mydata My Data
It´s a cell array in case that matters :)
댓글 수: 1
Guillaume
2014년 11월 18일
It does matter greatly that it's a cell array. Other than the NaNs, what's in the cell array? strings?, matrices? or just scalars?
답변 (2개)
Giorgos Papakonstantinou
2014년 11월 18일
I assume that your data are of nx1 or 1xn size. Then to delete the use this:
data(isnan(data)) = [];
댓글 수: 4
Guillaume
2014년 11월 18일
This works as long as each element of the cell array is a scalar.
It won't work on:
data = {'info', [1 2 3 4 NaN], NaN, 5};
Guillaume
2014년 11월 25일
Tessa, try this:
c={'sometext', NaN, 12.5
'othertxt', 45, 12
NaN, 'blah', 7
48, 78, 'aaa'} %example
nanrows = any(cellfun(@(e) isnumeric(e) && isnan(e), c), 2);
c(nanrows, :) = []
It will work as long as you don't have a matrix of numbers in a cell. If you do, replace the
isnan(e)
by
any(isnan(e(:)))
댓글 수: 2
Guillaume
2014년 11월 25일
If you get an empty cell, that means each row must contain at least one NaN.
I find it a bit odd to discard a whole row if there's just one NaN in it, but that's what you requested: "remove all rows containing a NaN".
The @(e) isnumeric(e) && isnan(e) is an anonymous function where e is just a placeholder name for any cell of the cell array. This is equivalent to:
function out = anonymousfunction(e)
out = isnumeric(e) && isnan(e);
end
Obviously, you could use any name you want instead of e.
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!