@@ -290,11 +290,9 @@ def plot_timeseries(
290
290
benchmark = benchmark .cumsum ()
291
291
292
292
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 ()
295
294
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 ()
298
296
# ---------------
299
297
300
298
fig , ax = _plt .subplots (figsize = figsize )
@@ -1013,16 +1011,16 @@ def plot_distribution(
1013
1011
apply_fnc = _stats .comp if compounded else _np .sum
1014
1012
1015
1013
port ["Weekly" ] = port ["Daily" ].resample ("W-MON" ).apply (apply_fnc )
1016
- port ["Weekly" ].ffill (inplace = True )
1014
+ port ["Weekly" ] = port [ "Weekly" ] .ffill ()
1017
1015
1018
1016
port ["Monthly" ] = port ["Daily" ].resample ("ME" ).apply (apply_fnc )
1019
- port ["Monthly" ].ffill (inplace = True )
1017
+ port ["Monthly" ] = port [ "Monthly" ] .ffill ()
1020
1018
1021
1019
port ["Quarterly" ] = port ["Daily" ].resample ("QE" ).apply (apply_fnc )
1022
- port ["Quarterly" ].ffill (inplace = True )
1020
+ port ["Quarterly" ] = port [ "Quarterly" ] .ffill ()
1023
1021
1024
1022
port ["Yearly" ] = port ["Daily" ].resample ("YE" ).apply (apply_fnc )
1025
- port ["Yearly" ].ffill (inplace = True )
1023
+ port ["Yearly" ] = port [ "Yearly" ] .ffill ()
1026
1024
1027
1025
fig , ax = _plt .subplots (figsize = figsize )
1028
1026
ax .spines ["top" ].set_visible (False )
0 commit comments