Machine Learning Imputation Techniques

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

1/10

flashcard set

Earn XP

Description and Tags

These flashcards cover key concepts related to machine learning imputation techniques and data pre-processing tasks.

Last updated 6:50 AM on 4/28/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

11 Terms

1
New cards

Data Cleaning

The process of addressing or fixing missing values, duplicate data, and incorrectly formatted data.

2
New cards

Data Integration

The process of combining data from different sources into a unified view.

3
New cards

Data Reduction

The process of reducing the dimensionality of the dataset, simplifying the data.

4
New cards

Data Transformation

The process of converting features into a format suitable for specific models or algorithms.

5
New cards

Imputation

A group of techniques used to replace missing values in a dataset with a reasonable estimate.

6
New cards

Univariate Imputation

Replaces missing values for a feature using only non-missing values for that same feature.

7
New cards

Multivariate Imputation

Provides more accurate imputations compared to univariate methods, especially when complex dependencies between features exist.

8
New cards

K-nearest Neighbors Imputation (KNN)

Uses the K most similar instances to a data point to impute the missing values, can handle numeric and categorical data.

9
New cards

Iterative Imputation

Uses regression to predict the missing values based on other features in the data.

10
New cards

SimpleImputation()

An initial imputation method used in iterative imputation to obtain estimates for missing values.

11
New cards

Stopping Criterion

Conditions that dictate when the iterative imputation process should stop, such as maximum iterations or specified tolerance.