#3 (2.4-2.5) Chapter 2: Data Management

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

flashcard set

Earn XP

Description and Tags

2.4 Data Quality, 2.5 Data Understanding, Preparation, and Transformation

Last updated 12:34 AM on 8/29/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

What is Data Quality?

The degree to which a dataset meets requirements for timeliness, completeness, accuracy, consistency, and format.

2
New cards

What is the fundamental principle of "Garbage In, Garbage Out" (GIGO)?

Poor-quality or erroneous input data inevitably leads to poor-quality decisions, flawed analytics, and unreliable strategic insights.

3
New cards

What are the 5 core dimensions of Data Quality?

Timeliness, Completeness, Accuracy, Consistency, and Format.

4
New cards

Define Timeliness as a data quality dimension and give its risk.

  • Definition: Data is accessible and up-to-date when needed for decision-making.

  • Risk: Delays prevent real-time responses to customer behavior, social media sentiment, or competitor pricing shifts.


5
New cards

Define Completeness as a data quality dimension and give its risk.

  • Definition: Maintaining the necessary breadth, depth, and scope of data for a specific task.

  • Risk: Missing fields (e.g., email, name) prevent the execution of targeted campaigns or complete customer analysis.


6
New cards

: Define Accuracy as a data quality dimension and give its risk.

  • Definition: The extent to which data is error-free, reliable, and precisely measured.

  • Risk: Human input errors, bad measurements, or corrupted feeds lead to flawed strategic choices.


7
New cards

Define Consistency as a data quality dimension and give its risk.

  • Definition: Standardized values and definitions across different functional departments, systems, or databases.

  • Risk: Inconsistent definitions lead to integration confusion, uncoordinated operations, and improper billing/pricing reconciliation.


8
New cards

Define Format as a data quality dimension and give its risk.

  • Definition: The extent to which information is adequately presented or delivered for efficient understanding.

  • Risk: Clumsy or hard-to-read dashboards obscure critical data, leading to operational failures and oversights.


9
New cards

How do human input errors like misspelled names affect customer data?

They create duplicate accounts for the same individual (e.g., Jonh Smith vs. John Smith), splitting transaction history across CRM records and distorting customer value metrics.

10
New cards

What is Data Understanding?

The process of thoroughly exploring and verifying available dataset fields before analysis to ensure correct business problem alignment and prevent erroneous reporting.

11
New cards

What is Overfitting, and what causes it?

  • Definition: When an overly complex model captures noise or sample-specific spurious effects rather than true relationships.

  • Cause: Including too many unnecessary, highly correlated, or irrelevant features (variables).

  • Consequence: Reduces model generalizability to new, unseen data.


12
New cards

What is a Statistical Power Calculation?


A statistical method used to determine the minimum sample size required to estimate outcomes with a sufficient level of precision.

13
New cards

What sample size is typically needed for predictive modeling vs. estimating effect size?

Predictive modeling typically requires a large sample of several thousand records to accurately forecast new outcomes, whereas estimating effect sizes can be done with smaller, representative samples.

14
New cards

What is a Unit of Analysis?

he primary entity being analyzed (the "what, when, and who"), such as a customer (for churn), a brand (for satisfaction), or a subscription (for plan pricing).

15
New cards
16
New cards

What are the 3 options for handling missing values in a dataset?

  1. Imputation: Replacing missing entries with estimated values (mean, median, mode, or regression/decision tree predictions).

  2. Record Omission: Removing entire incomplete rows/observations.

  3. Variable Exclusion: Dropping an entire column/feature if missingness is widespread and the variable is non-essential.


17
New cards

: When is mean, median, or mode imputation recommended for missing data?

When values are missing completely at random and represent a very small portion of the overall dataset.

18
New cards

What is the statistical rule of thumb for identifying an outlier?

Any observation that falls more than 3 standard deviations away from the mean or at a considerable distance from other clusters in cluster analysis.

19
New cards

When should outliers be removed versus retained?

  • Remove: When outliers are data entry errors or noise (e.g., age = 140).

  • Retain: When rare extreme events are the actual target of the analysis (e.g., fraud detection models).


20
New cards

What is Data Aggregation?

Applying summary operations to data (e.g., summing weekly sales into monthly totals) to align granular raw data with the required unit of analysis.

21
New cards

What is Data Normalization and how is it calculated?

Rescaling variables to bring them into the same range by subtracting the mean and dividing by the standard deviation (z=σx−μ​). It prevents high-range variables from dominating distance calculations in techniques like cluster analysis.

22
New cards

What is Feature Construction?

Creating new variables derived from existing fields (e.g., extracting day of the week, month, or season from a sales timestamp) to uncover underlying predictive patterns.

23
New cards

What is Dummy Coding?

Re-coding nominal categorical (nonmetric) variables (e.g., regions like Northeast, Southwest) into binary (0 or 1) indicator variables for statistical modeling.