0
0
Pandasdata~20 mins

Expanding window operations in Pandas - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Expanding Window Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
Predict Output
intermediate
2:00remaining
Output of expanding sum with min_periods
What is the output of the following code snippet using pandas expanding sum with min_periods=2?
Pandas
import pandas as pd
s = pd.Series([1, 2, 3, 4, 5])
result = s.expanding(min_periods=2).sum()
print(result.tolist())
A[nan, nan, 6.0, 10.0, 15.0]
B[1.0, 3.0, 6.0, 10.0, 15.0]
C[1, 3, 6, 10, 15]
D[nan, 3.0, 6.0, 10.0, 15.0]
Attempts:
2 left
💡 Hint
Remember that min_periods=2 means the expanding window will return NaN until at least 2 values are included.
data_output
intermediate
1:30remaining
Length of expanding window result
Given a pandas Series of length 7, what is the length of the Series returned by expanding().mean()?
Pandas
import pandas as pd
s = pd.Series(range(7))
result = s.expanding().mean()
print(len(result))
A7
B6
C8
D0
Attempts:
2 left
💡 Hint
The expanding window operation returns a result for each original element.
🔧 Debug
advanced
2:00remaining
Identify the error in expanding window code
What error does the following code raise when executed?
Pandas
import pandas as pd
s = pd.Series([1, 2, 3])
result = s.expanding(min_periods=0).sum()
print(result)
AAttributeError: 'Series' object has no attribute 'expanding'
BValueError: min_periods must be >= 1
CNo error, prints [1, 3, 6]
DTypeError: unsupported operand type(s) for +: 'int' and 'NoneType'
Attempts:
2 left
💡 Hint
Check the allowed values for the min_periods parameter in expanding.
visualization
advanced
2:30remaining
Plotting expanding mean of a time series
Which option produces a line plot showing the original data and its expanding mean on the same graph?
Pandas
import pandas as pd
import matplotlib.pyplot as plt
s = pd.Series([2, 4, 6, 8, 10])
exp_mean = s.expanding().mean()
plt.figure()
plt.plot(s, label='Original')
plt.plot(exp_mean, label='Expanding Mean')
plt.legend()
plt.show()
AThe plot shows two lines but both are flat at zero.
BThe plot shows only one line identical to the original data.
CThe plot shows two lines: the original increasing values and a smoother line starting at the first value and gradually increasing.
DThe plot shows an error because matplotlib is not imported.
Attempts:
2 left
💡 Hint
The expanding mean smooths the data by averaging all values up to each point.
🚀 Application
expert
3:00remaining
Using expanding window to detect trend changes
You have daily sales data in a pandas Series. You want to detect when the sales trend changes by comparing the expanding mean to the current value. Which code snippet correctly creates a boolean Series indicating if the current value is above the expanding mean?
Asales > sales.expanding().mean()
Bsales.expanding().mean() > sales
Csales > sales.rolling(window=3).mean()
Dsales.expanding(min_periods=0).mean() > sales
Attempts:
2 left
💡 Hint
Expanding mean includes all data up to current point; compare current value to it.