🌍 Data Analytics · subject
Data Analytics Exploratory Data Analysis and Visualization Syllabus
Every chapter and topic of Exploratory Data Analysis and Visualization examined in Data Analytics — 6 chapters, 27 topics, plus 53 flashcards written against it.
Exploratory Data Analysis and Visualization syllabus — full chapter and topic list
Expand any chapter to see its topics and sub-topics. This is the whole examinable outline for Exploratory Data Analysis and Visualization in Data Analytics, not a summary of it.
-
Exploratory Data Analysis
5 topics- Univariate Analysis
- Bivariate and Multivariate Analysis
- Distribution Analysis
- Correlation Analysis
- Feature Engineering Basics
-
Principles of Data Visualization
4 topics- Visual Encoding and Perception
- Choosing the Right Chart Type
- Color, Scale and Layout
- Avoiding Misleading Visuals
-
Chart Types and Use Cases
5 topics- Bar and Column Charts
- Line and Area Charts
- Scatter and Bubble Plots
- Histograms and Box Plots
- Heatmaps and Treemaps
-
Tableau
5 topics- Connecting to Data Sources
- Dimensions and Measures
- Calculated Fields and Parameters
- Filters and Sets
- Dashboards and Stories
-
Power BI
4 topics- Power Query and Data Modeling
- DAX Fundamentals
- Relationships and Star Schema
- Reports and Dashboards
-
Dashboard Design and Storytelling
4 topics- Defining Metrics and KPIs
- Dashboard Layout Best Practices
- Interactivity and Drill-Downs
- Data Storytelling and Narrative
Exploratory Data Analysis and Visualization flashcards for Data Analytics
23 of 53 cards from the Exploratory Data Analysis and Visualization deck — real questions with worked answers.
What is univariate analysis?
The examination of a single variable at a time to summarize and describe its characteristics, without addressing relationships or causes. It focuses on central tendency, dispersion, and shape of one variable's distribution.
Name the three main measures of central tendency and when each is preferred.
Mean (best for symmetric, no outliers), median (robust to skew/outliers), and mode (best for categorical or multimodal data).
How are variance and standard deviation defined for a sample?
Variance $s^{2} = \frac{1}{n-1}\sum_{i=1}^{n}(x_i - \bar{x})^{2}$ and standard deviation $s = \sqrt{s^{2}}$; the $n-1$ denominator (Bessel's correction) gives an unbiased estimate.
What is the interquartile range (IQR) and how is it computed?
$\text{IQR} = Q_3 - Q_1$, the spread of the middle 50% of the data. It is a robust measure of dispersion unaffected by extreme values.
State the common IQR rule for flagging outliers.
A value is an outlier if it lies below $Q_1 - 1.5\,\text{IQR}$ or above $Q_3 + 1.5\,\text{IQR}$.
What is bivariate analysis versus multivariate analysis?
Bivariate analysis studies the relationship between exactly two variables; multivariate analysis simultaneously examines three or more variables and their interrelationships.
Which chart is standard for visualizing the relationship between two continuous variables in bivariate analysis?
A scatter plot, which reveals direction, form (linear/nonlinear), strength, and outliers of the relationship.
How do you explore the relationship between a categorical and a continuous variable?
Use grouped summaries or visuals such as side-by-side box plots, grouped bar charts of means, or violin plots split by category.
What is a contingency (cross-tabulation) table used for?
To display the joint frequency distribution of two categorical variables, enabling analysis of association (e.g., via the chi-square test).
What does a distribution describe in EDA?
How the values of a variable are spread across their range — including central location, spread, shape, skewness, modality, and the presence of outliers.
Define skewness and interpret positive versus negative skew.
Skewness measures asymmetry of a distribution. Positive (right) skew has a long right tail with mean > median; negative (left) skew has a long left tail with mean < median.
What does kurtosis measure?
The 'tailedness' of a distribution. High kurtosis (leptokurtic) means heavy tails and a sharp peak; low kurtosis (platykurtic) means light tails and a flatter peak. Normal distribution has excess kurtosis of $0$.
What are the key properties of a normal (Gaussian) distribution?
Symmetric and bell-shaped, fully described by mean $\mu$ and standard deviation $\sigma$, with mean = median = mode, following the empirical rule.
State the empirical (68-95-99.7) rule for a normal distribution.
Approximately 68% of data lie within $\mu \pm \sigma$, 95% within $\mu \pm 2\sigma$, and 99.7% within $\mu \pm 3\sigma$.
How is a z-score (standard score) calculated and what does it mean?
$z = \frac{x - \mu}{\sigma}$; it expresses how many standard deviations a value lies from the mean, enabling standardized comparison across distributions.
What is the purpose of correlation analysis?
To quantify the strength and direction of the linear (or monotonic) association between two variables, without implying causation.
Give the formula and range of the Pearson correlation coefficient.
$r = \frac{\sum (x_i-\bar{x})(y_i-\bar{y})}{\sqrt{\sum (x_i-\bar{x})^{2}}\sqrt{\sum (y_i-\bar{y})^{2}}}$, ranging from $-1$ to $+1$; $0$ indicates no linear relationship.
When should Spearman's rank correlation be used instead of Pearson's?
When the relationship is monotonic but nonlinear, data are ordinal, or there are outliers/non-normality; Spearman correlates the ranks rather than the raw values.
Why is 'correlation does not imply causation' a key principle?
Because two variables can be associated due to coincidence, reverse causation, or a confounding (lurking) variable, so correlation alone cannot establish that one causes the other.
What is a correlation matrix and how is it commonly visualized?
A square table of pairwise correlation coefficients among many variables, commonly visualized as a heatmap to spot strongly related feature pairs.
What is feature engineering?
The process of creating, transforming, or selecting variables from raw data to improve model performance and better expose underlying patterns to algorithms.
Distinguish normalization from standardization in feature scaling.
Normalization (min-max) rescales to a fixed range, usually $[0,1]$: $x' = \frac{x - x_{\min}}{x_{\max} - x_{\min}}$. Standardization rescales to zero mean and unit variance: $x' = \frac{x - \mu}{\sigma}$.
What is one-hot encoding and why is it used?
A technique that converts a categorical variable with $k$ levels into $k$ binary (0/1) indicator columns, so nominal categories can be used by models without implying false ordinal relationships.
See more Exploratory Data Analysis and Visualization flashcards →
Planning Exploratory Data Analysis and Visualization for Data Analytics
Exploratory Data Analysis and Visualization is about 17% of the Data Analytics syllabus by topic count — 27 of 163 topics, spread over 6 chapters. At roughly 45 minutes per topic plus 12 minutes per sub-topic, a first pass runs to about 20 hours.
The heaviest chapters are Exploratory Data Analysis (5 topics), Chart Types and Use Cases (5 topics), Tableau (5 topics) . Front-load those while your energy is high; the short chapters are better revision filler later.
Work top-down: read the chapter, then tick topics off individually rather than marking the whole chapter done. Sub-topics are where silent gaps hide.
Exploratory Data Analysis and Visualization (Data Analytics) FAQ
What is in the Data Analytics Exploratory Data Analysis and Visualization syllabus?
Exploratory Data Analysis and Visualization is split into 6 chapters — Exploratory Data Analysis, Principles of Data Visualization, Chart Types and Use Cases, Tableau, Power BI and Dashboard Design and Storytelling, containing 27 topics and 0 sub-topics in total.
How is Exploratory Data Analysis and Visualization structured in the Data Analytics syllabus?
6 chapters. Exploratory Data Analysis and Visualization accounts for about 17% of the topics in the whole Data Analytics syllabus (27 of 163).
How long should I spend on Exploratory Data Analysis and Visualization for Data Analytics?
Budget around 20 hours for a first pass through Exploratory Data Analysis and Visualization — about 45 minutes per topic plus 12 minutes per sub-topic across its 27 topics. Add revision cycles on top.
Are there flashcards for Data Analytics Exploratory Data Analysis and Visualization?
Yes — a 53-card Exploratory Data Analysis and Visualization deck. Sample cards are printed on this page, and the full deck is free in the Examius app with spaced repetition scheduling.