Recall & Review
beginner
What are summary statistics?
Summary statistics are numbers that describe and summarize data, like the average, median, or spread. They help us understand the main features of data quickly.
Click to reveal answer
beginner
What does the mean tell us about data?
The mean is the average value. It adds all numbers together and divides by how many numbers there are. It shows the central point of the data.
Click to reveal answer
intermediate
What is the difference between mean and median?
Mean is the average of all values. Median is the middle value when data is sorted. Median is better when data has very high or low values that can skew the mean.
Click to reveal answer
intermediate
What does the standard deviation measure?
Standard deviation shows how spread out the data is from the mean. A small value means data points are close to the mean, a large value means they are spread out.
Click to reveal answer
beginner
How can you get summary statistics in R for a numeric vector?
Use the summary() function on the vector. It gives minimum, 1st quartile, median, mean, 3rd quartile, and maximum values.
Click to reveal answer
Which summary statistic is the middle value when data is sorted?
✗ Incorrect
The median is the middle value when data is arranged in order.
What does a high standard deviation indicate?
✗ Incorrect
High standard deviation means data points are spread out from the average.
In R, which function gives a quick summary of a numeric vector?
✗ Incorrect
The summary() function provides min, quartiles, median, mean, and max.
If data has extreme values, which statistic is better to describe the center?
✗ Incorrect
Median is less affected by extreme values than mean.
What does the range of data show?
✗ Incorrect
Range is the difference between the largest and smallest values.
Explain what summary statistics are and why they are useful.
Think about how you describe a group of numbers quickly.
You got /3 concepts.
Describe how you would get and interpret summary statistics for a numeric dataset in R.
Imagine you have a list of exam scores and want to know the main points.
You got /3 concepts.