Recall & Review
beginner
What is a time series in data science?
A time series is a sequence of data points collected or recorded at regular time intervals, like daily temperatures or stock prices over time.
Click to reveal answer
beginner
What does 'trend' mean in time series analysis?
A trend is a long-term increase or decrease in the data values over time, showing a general direction like rising sales over years.
Click to reveal answer
beginner
Explain 'seasonality' in time series data.
Seasonality means repeating patterns or cycles in data at fixed intervals, like higher ice cream sales every summer.
Click to reveal answer
beginner
What is 'noise' in a time series?
Noise is the random variation or fluctuations in data that do not follow a pattern, like small daily changes in temperature.
Click to reveal answer
beginner
How can pandas help analyze time series patterns?
Pandas provides tools to handle dates, resample data, calculate rolling averages, and plot trends and seasonality easily.
Click to reveal answer
Which pattern in time series shows a repeated cycle over fixed intervals?
✗ Incorrect
Seasonality is the repeated cycle or pattern at fixed intervals in time series data.
What does a 'trend' in time series data represent?
✗ Incorrect
A trend shows the long-term direction of data, either increasing or decreasing.
In pandas, which function helps to calculate the moving average to smooth time series data?
✗ Incorrect
rolling().mean() calculates the moving average, which smooths out short-term fluctuations.
What is 'noise' in a time series?
✗ Incorrect
Noise is the random variation or irregular fluctuations in the data.
Which pandas method is used to change the frequency of time series data, like converting daily data to monthly?
✗ Incorrect
resample() changes the frequency of time series data, such as daily to monthly.
Describe the main patterns you can find in time series data and why they matter.
Think about how data changes over time and what those changes tell us.
You got /4 concepts.
Explain how pandas can be used to identify and analyze time series patterns.
Consider pandas functions that help with dates and smoothing data.
You got /4 concepts.