Recall & Review
beginner
What is the purpose of descriptive statistics?
Descriptive statistics summarize and describe the main features of a dataset using numbers and graphs, making data easier to understand.
Click to reveal answer
beginner
Name three common measures of central tendency.
The three common measures are mean (average), median (middle value), and mode (most frequent value).
Click to reveal answer
beginner
What does the standard deviation tell us about data?
Standard deviation shows how spread out the data is around 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
In R, which function gives a quick summary of a dataset including min, max, median, and quartiles?
The function summary() provides a quick overview of these statistics for each column in a dataset.Click to reveal answer
intermediate
What is the difference between variance and standard deviation?
Variance measures the average squared distance from the mean, while standard deviation is the square root of variance, giving spread in the original units.
Click to reveal answer
Which measure of central tendency is least affected by extreme values?
✗ Incorrect
The median is the middle value and is not influenced by very high or low values, unlike the mean.
What does the function sd() in R calculate?
✗ Incorrect
sd() calculates the standard deviation, which measures data spread around the mean.
Which of the following is NOT a measure of spread?
✗ Incorrect
Mean is a measure of central tendency, not spread.
What does the summary() function in R return for numeric data?
✗ Incorrect
summary() returns a set of descriptive statistics including min, quartiles, median, mean, and max.
If data points are very close to the mean, what can we say about the standard deviation?
✗ Incorrect
A small standard deviation means data points are close to the mean.
Explain the main types of descriptive statistics and their roles in understanding data.
Think about how we describe the center and spread of data.
You got /3 concepts.
Describe how you would use R functions to get a quick overview of a dataset's descriptive statistics.
Focus on common R functions for descriptive stats.
You got /3 concepts.