Recall & Review
beginner
What is interpolation in data science?
Interpolation is a method to estimate unknown values that fall between known data points. It helps fill gaps in data by predicting values inside the range of existing data.
Click to reveal answer
beginner
Why do we use interpolation instead of just using existing data points?
We use interpolation to estimate values where we don't have data but need an educated guess. It helps create smooth curves or fill missing information between known points.
Click to reveal answer
intermediate
How does interpolation relate to the concept of continuity in data?
Interpolation assumes data changes smoothly between points, so it estimates values by connecting points with lines or curves, reflecting continuous change.
Click to reveal answer
beginner
What role does scipy play in interpolation?
Scipy provides easy-to-use functions to perform interpolation, allowing you to estimate values between data points using different methods like linear or cubic interpolation.
Click to reveal answer
intermediate
Can interpolation predict values outside the range of known data points?
No, interpolation only estimates values between known points. Predicting outside the range is called extrapolation and is less reliable.
Click to reveal answer
What does interpolation estimate?
✗ Incorrect
Interpolation estimates values that lie between existing data points.
Which scipy function is commonly used for interpolation?
✗ Incorrect
The interp1d function in scipy.interpolate is used to create interpolation functions.
Interpolation assumes data changes in what way between points?
✗ Incorrect
Interpolation assumes smooth and continuous change between known data points.
What is the difference between interpolation and extrapolation?
✗ Incorrect
Interpolation estimates values between known points; extrapolation estimates beyond known data.
Why might interpolation be useful in real life?
✗ Incorrect
Interpolation helps estimate missing data, like temperatures between recorded times.
Explain in your own words why interpolation estimates values between data points and not outside them.
Think about how interpolation connects dots on a graph.
You got /4 concepts.
Describe how scipy helps with interpolation and name a function you would use.
Focus on scipy.interpolate module.
You got /4 concepts.