Changing data in excel from NA to a previous number in the column?
    조회 수: 4 (최근 30일)
  
       이전 댓글 표시
    
I would like to change NA values for tempreature sensors with a previous number in the same column, to make the values consistent. The columns are more than 10000 rows (cells) of reported data, that's why it has to be automated?

댓글 수: 0
채택된 답변
  Chaitanya Mallela
    
 2020년 7월 16일
        T  = readtable('filename.csv');     % read the file as table
T  = fillmissing(T,'previous');     % fill NaNs with previous values
[r,c] = find(isnan(T{:,:}));        % check remaining NaN present as a first value in the columns
if(~(isempty(r) && isempty(c)))
     T(r,c) = {0};                  % fIll with zeros
end
writetable(T,'filename.csv');       % write the table to file
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

