Replace NaN's in table with zero
이전 댓글 표시
Hello, I have a 1501x7 table called 'x' and there appears to be NaN's in the fourth and sixth column called "Age" and "height". I would like a way to replace NaN's with zeros. Take note, that I have already tried:
k = find(isnan(x))';
x(k) = 0;
% and
x(isnan(x)) = 0;
Yet, neither work because I am using a table, not a matrix. I have also tried converting my table into a cell array, and using these same functions, but they still do not work. They return:"Undefined function 'isnan' for input arguments of type 'cell'" ALSO, please note that the table has columns full of text. So, cell2mat does not work.
댓글 수: 3
AFiorillo
2015년 7월 24일
When indexing into a table or cell, parentheses and curly braces have very different meanings. Using parenthesis result in a slice of that table/cell, so the result is also a table or a cell. Using curly braces yields the contents of those slices. See here for a more comprehensive explanation on accessing data in tables.
For your code, try
k = find(isnan(x))';
x{k} = 0;
% and
x{isnan(x)} = 0;
xander fong
2015년 7월 27일
hager fouda
2023년 9월 1일
Thank you so much. it works.
채택된 답변
추가 답변 (9개)
Akira Agata
2017년 2월 17일
For example:
% Make a sample table 'T' and replace 'NaN' with 0
T = table({'smith';'jones';'doe'},[20;NaN;40],[NaN;72;66],[120;130;140],'VariableNames',{'Name' 'Age' 'Height' 'Weight'});
idx = ismissing(T(:,{'Age','Height'}));
T{:,{'Age','Height'}}(idx) = 0;
댓글 수: 1
Mohamed
2024년 10월 21일
ismissing func. served the purpose.
Yuting Mou
2016년 7월 29일
I also run across the problem, but there seems to be an easier way:
x.age(isnan(x.age)) = 0;
This is OK in my case
댓글 수: 1
Dooyoung Kim
2018년 6월 25일
This works for me too! Thanks for the suggestion.
Steven Lord
2018년 7월 23일
7 개 추천
I would use the fillmissing function introduced in release R2016b. See the "Table with Multiple Data Types" example on that documentation page for a demonstration of how to replace NaN values with 0.
J.M. Verduijn
2019년 2월 8일
for i= 1: width(T)
T.(i)(isnan(T.(i))) = 0;
end
Works for me, replaces all NaN values in table T with 0
댓글 수: 1
Lautaro Parada
2019년 7월 2일
This is so simple and accurate! thanks!
Zachary Smith
2020년 3월 19일
1 개 추천
If you are using readtable() to load the table from a file, then you can add the name-value pair argument 'EmptyValue',0 to do this automatically.
Aron Magesh
2021년 3월 7일
편집: Aron Magesh
2021년 3월 7일
1 개 추천
Just use fillmissing function if the data is in a table or timetable.
댓글 수: 1
Walter Roberson
2021년 3월 7일
That is what Steven Lord suggested in https://www.mathworks.com/matlabcentral/answers/231096-replace-nan-s-in-table-with-zero#answer_329967
Andy
2018년 7월 23일
0 개 추천
so, in other words:
mainTTable{:,:}(ismissing(mainTTable)) = 0;
carolina franco
2020년 1월 28일
Hi,
Another simple way to understand what's going on .
For me, it works well in R2014a. You only need to enter the matrix with NaN values without specifying the columns where NaN values are.
%Input
m_data=C{1,1}; % Matrix with NaN values
%Code
s1=size(m_data,1);
for i= 1: s1
msubs=m_data(i,1:end); % Save existing data in ith row of m_data
msubs=msubs(isnan(m_data(i,1:end))==0); %Substitute matrix/ taking only non-NaN values
m_data(i,1:end)=0; %Erase all existing values in ith row of m_data
m_data(i,1:size(msubs,2))=msubs; %Substitute values without NaN
end
댓글 수: 2
Stephen23
2020년 1월 28일
Note that all the original question explicitly states that "..I am using a table, not a matrix", and all of the other answers work with tables, not numeric matrices. Tables are a container array type:
carolina franco
2020년 1월 28일
Right! Thanks
Gabor
2021년 3월 11일
T{:,2:4}(ismissing(T{:,2:4})) = 0;
2:4 are the columns which are containing NaN values.
댓글 수: 1
Interesting, that does work.
T = table({'smith';'jones';'doe'},[20;NaN;40],[NaN;72;66],[120;130;140],'VariableNames',{'Name' 'Age' 'Height' 'Weight'})
T{:,2:4}(ismissing(T{:,2:4})) = 0
카테고리
도움말 센터 및 File Exchange에서 Tables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!