0
0
ML Pythonml~5 mins

Why time series has unique challenges in ML Python - Quick Recap

Choose your learning style9 modes available
Recall & Review
beginner
What makes time series data different from regular data?
Time series data is ordered by time, so the order matters. This means past values can affect future values, unlike regular data where order usually doesn't matter.
Click to reveal answer
beginner
Why can't we just shuffle time series data like other data?
Shuffling breaks the time order and removes the important sequence information, which can cause models to learn wrong patterns.
Click to reveal answer
intermediate
What is 'stationarity' in time series and why is it important?
Stationarity means the data's statistical properties like mean and variance stay the same over time. Many models assume stationarity to make good predictions.
Click to reveal answer
intermediate
How does seasonality create challenges in time series forecasting?
Seasonality means patterns repeat over fixed periods (like daily or yearly). Models must detect and adjust for these repeating patterns to predict well.
Click to reveal answer
intermediate
Why is handling missing data tricky in time series?
Missing data can break the time order and affect trends or patterns. Filling gaps incorrectly can mislead the model.
Click to reveal answer
Why is the order of data points important in time series?
ABecause data points are independent
BBecause past values influence future values
CBecause order does not matter
DBecause data is random
What does stationarity mean in time series data?
AData has no pattern
BData changes randomly
CData has constant mean and variance over time
DData is always increasing
What is a common challenge caused by seasonality in time series?
AMissing data is not a problem
BData points are independent
CData is always stationary
DIgnoring repeating patterns leads to poor predictions
Why can't we shuffle time series data before training a model?
AIt breaks the time order and sequence information
BIt improves model accuracy
CIt removes noise
DIt makes data stationary
What problem does missing data cause in time series?
AIt can disrupt trends and patterns
BIt always improves model performance
CIt makes data stationary
DIt has no effect
Explain why time series data requires special handling compared to regular data.
Think about how time flows and affects data points.
You got /4 concepts.
    Describe the challenges that seasonality and missing data create in time series analysis.
    Consider how patterns repeat and what happens if data points disappear.
    You got /4 concepts.