Created
January 16, 2019 12:52
-
-
Save medvedev1088/aeb4189c875e178cb8e881d9fbed4b98 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with | |
d0 as ( | |
select | |
array_to_string(x.addresses,',') as address, | |
date(block_timestamp) as date, | |
value | |
from `bigquery-public-data.crypto_dogecoin.transactions` join unnest(outputs) as x | |
) | |
,daily_incomes as ( | |
select | |
address, | |
date, | |
sum(value) as income | |
from d0 | |
GROUP BY address, date | |
) | |
,limited_daily_incomes as ( | |
select | |
daily_incomes.date, | |
array_agg(struct(income) ORDER BY income desc LIMIT 10000) as incomes | |
from daily_incomes | |
group by date | |
) | |
,ranked_daily_incomes as ( | |
select | |
date, | |
income, | |
row_number() over (partition by date order by income desc) as rank | |
from limited_daily_incomes cross join unnest(limited_daily_incomes.incomes) as incomes | |
) | |
select | |
date, | |
-- (1 − 2B) https://en.wikipedia.org/wiki/Gini_coefficient | |
1 - 2 * sum((income * (rank - 1) + income / 2)) / count(*) / sum(income) as gini | |
from ranked_daily_incomes | |
group by date | |
order by date asc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment