MATLAB Data Filtering

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/22

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 5:04 AM on 8/8/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

23 Terms

1
New cards

Data Cleaning

Data cleaning is the process of identifying and correcting missing, invalid, inconsistent, duplicate, or unusual data before analysis.

2
New cards

Missing Data

Missing data refers to observations for which a value is absent or unavailable in a dataset.

3
New cards

Missing Value

A missing value is a MATLAB representation of unavailable data, whose exact representation can depend on the data type.

4
New cards

ismissing

ismissing returns a logical array identifying elements that contain missing data.

5
New cards

rmmissing

rmmissing removes entries containing missing data from an array or table.

6
New cards

fillmissing

fillmissing replaces missing data using a specified method, such as a constant value, a neighboring value, or an interpolated value.

7
New cards

Missing-Data Imputation

Missing-data imputation is the process of replacing missing observations with estimated or otherwise specified values instead of removing them.

8
New cards

Duplicate Data

Duplicate data consists of repeated observations or records that may need to be identified or removed before analysis.

9
New cards

unique

unique returns the distinct values or rows of an array and can be used to identify or remove duplicate data.

10
New cards

Outlier

An outlier is an observation that differs substantially from the general pattern of the surrounding data.

11
New cards

isoutlier

isoutlier identifies data values that MATLAB considers outliers according to a specified detection method.

12
New cards

rmoutliers

rmoutliers removes detected outliers from data.

13
New cards

filloutliers

filloutliers replaces detected outliers using a specified filling method rather than removing them.

14
New cards

Data Standardization

Data standardization transforms data to a common scale so variables with different magnitudes or units can be compared or analyzed more consistently.

15
New cards

zscore

zscore standardizes numerical data by subtracting its mean and dividing by its standard deviation, producing data expressed in standard-deviation units.

16
New cards

normalize

normalize scales or centers data according to a specified normalization method.

17
New cards

Data Validation

Data validation checks whether data satisfies expected requirements, such as valid ranges, formats, types, or allowable values, before analysis.

18
New cards

Conditional Data Extraction

Conditional data extraction retrieves observations that satisfy specified criteria from a larger dataset.

19
New cards

Range Filtering

Range filtering extracts values or observations that fall within specified lower and upper limits.

20
New cards

Text-Based Filtering

Text-based filtering selects observations according to the contents or patterns of text data.

21
New cards

contains

contains determines whether text contains a specified substring and returns logical values indicating the matches.

22
New cards

Pattern Matching

Pattern matching identifies text that follows a specified textual structure or pattern, allowing matching observations to be located or extracted.

23
New cards

Grouping by Condition

Grouping by condition separates observations according to specified criteria so different subsets of a dataset can be examined independently.