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?
5 ビュー (過去 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!