I have been given a excel spreadsheet of a data with missing values.How to find the missing values using som technique in matlab.Is there any program which any one has?
조회 수: 4 (최근 30일)
이전 댓글 표시
I have been given a excel spreadsheet of a data with missing values.How to find the missing values using som technique in matlab.Is there any program which any one has?
댓글 수: 0
답변 (2개)
Steven Lord
2017년 7월 27일
If you've already read the data into MATLAB, see the missing data related sections on this documentation page.
If you're trying to read the data into a table using readtable, take a look at the TreatAsEmpty option or the replacement rules available in the SpreadsheetImportOptions object.
댓글 수: 0
Image Analyst
2017년 7월 27일
You can use readtable to read it in, then use ismissing()
data = readtable(filename);
badData = ismissing(data); % Map of what's missing (nan)
댓글 수: 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!