Data Mining Concepts and Techniques - Chapter 2 Vocabulary

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/28

flashcard set

Earn XP

Description and Tags

Flashcards covering vocabulary, definitions, and concepts from Data Mining Chapter 2 notes.

Last updated 6:47 AM on 8/30/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

29 Terms

1
New cards

Data Object

An entity represented in a dataset, composed of a collection of attributes (also referred to as a sample, example, instance, data point, or tuple).

2
New cards

Attribute

A data field representing a property, characteristic, or feature of a data object (also known as a variable, field, or characteristic).

3
New cards

Nominal Attribute

An attribute type whose values are categories, states, or names of things without any implicit quantitative order.

4
New cards

Ordinal Attribute

An attribute whose values have a meaningful order or ranking, but where the magnitude between successive values is unknown.

5
New cards

Symmetric Binary Attribute

A nominal attribute with only 22 states where both outcomes are equally important, such as gender.

6
New cards

Asymmetric Binary Attribute

A nominal attribute with only 22 states where the outcomes are not equally important, such as a medical test result where positive carries greater significance.

7
New cards

Interval-Scaled Attribute

A numeric attribute measured on a scale with equal intervals and meaningful differences, but lacking a true zero-point and meaningful ratios.

8
New cards

Ratio-Scaled Attribute

A numeric attribute measured on a scale with equal intervals and an inherent true zero-point, allowing meaningful ratios and multiples between values.

9
New cards

Discrete Attribute

An attribute that has only a finite or countably infinite set of values, such as zip codes or document words.

10
New cards

Continuous Attribute

An attribute that takes real numbers as values, typically represented using floating-point variables.

11
New cards

Trimmed Mean

A measure of central tendency calculated by removing extreme values or outliers from the dataset before computing the mean.

12
New cards

Median

The middle value in an ordered set of data if the number of values is odd, or the average of the middle two values if the number of values is even.

13
New cards

Mode

The value that occurs most frequently in a dataset.

14
New cards

Multimodal Data

A dataset that possesses two or more distinct modes.

15
New cards

Quantiles

Data points taken at regular intervals of a data distribution that divide it into equal-sized consecutive sets.

16
New cards

Quartiles

Specific 44-quantiles that divide a distribution into four equal-sized subsets, comprising Q1Q_1 (25th25\text{th} percentile), Q2Q_2 (median), and Q3Q_3 (75th75\text{th} percentile).

17
New cards

Five-Number Summary

A summary of a data distribution consisting of five values in order: Minimum, Q1Q_1, Median (Q2Q_2), Q3Q_3, and Maximum.

18
New cards

Boxplot

A graphical display of the five-number summary where a box spans from Q1Q_1 to Q3Q_3, a line indicates the median, whiskers extend to the minimum and maximum, and outliers are plotted individually.

19
New cards

Outlier

A data point that deviates significantly from others, typically identified as a value lying more than 1.5×IQR1.5 \times \text{IQR} beyond the first or third quartile.

20
New cards

Variance

A measure of data dispersion that quantifies the spread of a set of NN observations, denoted as s2s^2 for samples and σ2\text{σ}^2 for populations.

21
New cards

Standard Deviation

The square root of variance (denoted as ss for a sample or σ\text{σ} for a population), measuring how closely data points cluster around the mean.

22
New cards

Quantile Plot

A plot where each data value xix_i is paired with fif_i, representing that approximately 100 f_i \text{%} of the data is less than or equal to xix_i.

23
New cards

Quantile-Quantile (Q-Q) Plot

A graphical display that plots the quantiles of one univariate distribution against the corresponding quantiles of another.

24
New cards

Scatter Plot

A graph that plots pairs of values as coordinates in a two-dimensional plane to visually reveal relationships between variables.

25
New cards

Similarity

A numerical measure indicating how alike two data objects are, taking higher values in the range [0,1][0, 1] as objects become more alike.

26
New cards

Dissimilarity

A numerical measure indicating how different two data objects are, taking lower values (often with a minimum of 00) as objects become more alike.

27
New cards

Proximity

A general term referring to a measure of either similarity or dissimilarity between data objects.

28
New cards

Simple Matching Distance

A dissimilarity measure for nominal attributes given by d(i,j)=pmpd(i, j) = \frac{p - m}{p}, where mm is the number of attribute matches and pp is the total number of attributes.

29
New cards

Jaccard Coefficient

A similarity measure for asymmetric binary attributes calculated as sim(i,j)=qq+r+s\text{sim}(i, j) = \frac{q}{q + r + s}, where qq represents mutual presence (1-11\text{-}1) and r,sr, s represent mismatched attributes.