Recall & Review
beginner
What is interpolation in data science?
Interpolation is a method to estimate unknown values between known data points. It helps create a smooth curve through the data.
Click to reveal answer
beginner
Name a common interpolation method used for smoothing data.
Cubic spline interpolation is commonly used. It fits smooth curves between points using cubic polynomials.
Click to reveal answer
beginner
What Python library provides tools for interpolation?
The scipy library, especially scipy.interpolate, provides functions to perform interpolation easily.
Click to reveal answer
intermediate
How does interpolation help with noisy data?
Interpolation smooths out small fluctuations by estimating values on a smooth curve, making trends clearer.
Click to reveal answer
intermediate
What is the difference between interpolation and extrapolation?
Interpolation estimates values inside the range of known data points. Extrapolation predicts values outside that range, which is less reliable.
Click to reveal answer
Which scipy module is used for interpolation?
✗ Incorrect
scipy.interpolate contains functions specifically for interpolation tasks.
What type of curve does cubic spline interpolation fit between points?
✗ Incorrect
Cubic spline interpolation fits cubic polynomial curves between data points.
Interpolation is best used to estimate values:
✗ Incorrect
Interpolation estimates values between known data points.
Which of these is NOT a benefit of interpolation?
✗ Incorrect
Predicting far beyond known points is extrapolation, not interpolation.
Which function in scipy.interpolate can be used for 1D cubic spline interpolation?
✗ Incorrect
UnivariateSpline fits a smooth spline curve to 1D data.
Explain how interpolation can be used to smooth noisy data and name a scipy function that helps with this.
Think about fitting smooth curves to data points.
You got /3 concepts.
Describe the difference between interpolation and extrapolation with examples.
Consider where the estimated points lie relative to known data.
You got /3 concepts.