ismissing
(Not Recommended) Find dataset array elements with missing values
The dataset
data type is not recommended. To work with heterogeneous data,
use the MATLAB®
table
data type instead. See MATLAB
table
documentation for more information.
Description
returns
a logical array that indicates which elements in the dataset array, I
= ismissing(ds
)ds
,
contain a missing value. By default, ismissing
recognizes
NaN
as a missing value in numeric variables, ''
as a
missing value in character variables, and <undefined>
as a missing
value in categorical arrays.
ds2 = ds(~any(I,2),:)
creates a new dataset array containing only the complete observations inds
.ds2 = ds(:,~any(I,1))
creates a new dataset array containing only the variables fromds
with no missing values.
returns missing value indices with additional options specified by one or more
I
= ismissing(ds
,Name=Value
)Name=Value
arguments.
Input Arguments
Output Arguments
Version History
Introduced in R2012b
See Also
dataset
| isempty
| isnan
| isundefined
| replaceWithMissing