Skip to content

Commit 811ba43

Browse files
authored
Update core.py - add pandas3.0 compatibility
1. Adopted ranaroussi#375 fixes on resample 2. modify df["col"].ffill(inplace=True) to df["col"] = df["col"].ffill()
1 parent 3412333 commit 811ba43

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

quantstats/_plotting/core.py

+6-8
Original file line numberDiff line numberDiff line change
@@ -290,11 +290,9 @@ def plot_timeseries(
290290
benchmark = benchmark.cumsum()
291291

292292
if resample:
293-
returns = returns.resample(resample)
294-
returns = returns.last() if compound is True else returns.sum(axis=0)
293+
returns = returns.resample(resample).last() if compound else returns.resample(resample).sum()
295294
if isinstance(benchmark, _pd.Series):
296-
benchmark = benchmark.resample(resample)
297-
benchmark = benchmark.last() if compound is True else benchmark.sum(axis=0)
295+
benchmark = benchmark.resample(resample).last() if compound else benchmark.resample(resample).sum()
298296
# ---------------
299297

300298
fig, ax = _plt.subplots(figsize=figsize)
@@ -1013,16 +1011,16 @@ def plot_distribution(
10131011
apply_fnc = _stats.comp if compounded else _np.sum
10141012

10151013
port["Weekly"] = port["Daily"].resample("W-MON").apply(apply_fnc)
1016-
port["Weekly"].ffill(inplace=True)
1014+
port["Weekly"] = port["Weekly"].ffill()
10171015

10181016
port["Monthly"] = port["Daily"].resample("ME").apply(apply_fnc)
1019-
port["Monthly"].ffill(inplace=True)
1017+
port["Monthly"] = port["Monthly"].ffill()
10201018

10211019
port["Quarterly"] = port["Daily"].resample("QE").apply(apply_fnc)
1022-
port["Quarterly"].ffill(inplace=True)
1020+
port["Quarterly"] = port["Quarterly"].ffill()
10231021

10241022
port["Yearly"] = port["Daily"].resample("YE").apply(apply_fnc)
1025-
port["Yearly"].ffill(inplace=True)
1023+
port["Yearly"] = port["Yearly"].ffill()
10261024

10271025
fig, ax = _plt.subplots(figsize=figsize)
10281026
ax.spines["top"].set_visible(False)

0 commit comments

Comments
 (0)