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 visualizzazioni (ultimi 30 giorni)
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?

Risposte (2)

Steven Lord
Steven Lord il 27 Lug 2017
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.

Image Analyst
Image Analyst il 27 Lug 2017
You can use readtable to read it in, then use ismissing()
data = readtable(filename);
badData = ismissing(data); % Map of what's missing (nan)

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by