Dividend as a percent of EPS: large equity REITs against every other US dividend payer
Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-09-20, from REIT Payout Ratio: FFO vs EPS Explained.
| category | company_count | median_eps_payout_pct | pct_paying_over_earnings |
|---|---|---|---|
| All other dividend payers | 1028 | 35.8 | 15.1 |
| Equity REITs | 9 | 126.3 | 77.8 |
- Rows × columns
- 2 × 4
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
category |
text | 2 distinct values (All other dividend payers, Equity REITs) | |
company_count |
number | 9 to 1,028 | count |
median_eps_payout_pct |
number | 35.8 to 126.3 | percent |
pct_paying_over_earnings |
number | 15.1 to 77.8 | percent |
Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
SELECT multiIf(ticker IN ('O','SPG','PLD','PSA','AVB','EQR','VTR','WELL','KIM','FRT','NNN','MAA','ARE','IRM'),
'Equity REITs',
'All other dividend payers') AS category,
count() AS company_count,
round(quantileDeterministic(0.5)(toFloat64(dividend_yield * price / earnings_per_share) * 100,
cityHash64(ticker)), 1) AS median_eps_payout_pct,
round(100 * countIf(dividend_yield * price > earnings_per_share) / count(), 1) AS pct_paying_over_earnings
FROM global_markets.stocks_ratios
WHERE date = (SELECT max(date) FROM global_markets.stocks_ratios)
AND price >= 5
AND market_cap >= 1000000000
AND dividend_yield > 0
AND earnings_per_share > 0
GROUP BY category
ORDER BY category