Data Analysis
Everything on SkillVeris tagged Data Analysis — collected across the glossary, study notes, blog, and cheat sheets.
8 resources across 1 library
Interview Questions(8)
What is the Difference Between GROUP BY and ORDER BY?
GROUP BY aggregates rows that share a common value into summary rows, while ORDER BY simply sorts the result set without changing how many rows are returned.
What is a Common Table Expression (CTE) in SQL?
A Common Table Expression, or CTE, is a named, temporary result set defined with a WITH clause that exists only for the duration of the single statement that r…
How to Answer "Describe a Time You Had to Handle a Data-Driven Disagreement"
The strongest answer describes a real disagreement where two people looked at the same numbers and reached different conclusions, then shows how you traced the…
How to Solve Median and Mode Problems
The median is the middle value of a sorted dataset (or the average of the two middle values for an even count), and the mode is the value that occurs most freq…
How to Solve Mean Deviation Problems
Mean deviation measures the average absolute distance of every data point from a central value (usually the mean), computed as MD = Σ|xi − x̄| / n, and it quan…
How to Solve Standard Deviation Problems
Standard deviation measures spread by taking the square root of the average squared deviation from the mean, σ = √(Σ(xi − x̄)² / n), and squaring before averag…
How to Solve Bar Graph Data Interpretation Problems
Bar graph data interpretation is solved by first reading the axes and scale carefully, then extracting the exact values each bar represents before computing wh…
How to Solve Pie Chart Data Interpretation Problems
Pie chart data interpretation is solved by converting each slice’s percentage or degree measure back into an absolute value using the chart’s stated total, sin…