okama.AssetList.dividend_growing_years

property AssetList.dividend_growing_years

Return the number of years when the annual dividend was growing for each asset.

Returns:
DataFrame

Dividend growth length periods time series for each asset.

See also

dividend_yield

Dividend yield time series.

dividend_yield_annual

Calendar year dividend yield time series.

dividends_annual

Calendar year dividends.

dividend_paying_years

Number of years of consecutive dividend payments.

get_dividend_mean_yield

Arithmetic mean for annual dividend yield.

get_dividend_mean_growth_rate

Geometric mean of annual dividends growth rate.

Examples

>>> import matplotlib.pyplot as plt
>>> x = ok.AssetList(['T.US', 'XOM.US'], first_date='1984-01', last_date='1994-12')
>>> x.dividend_growing_years.plot(kind='bar')
>>> plt.show()
../_images/okama-AssetList-dividend_growing_years-1.png