 [source](https://images.app.goo.gl/vHncZUx7KkSafNVj9) On [publish0x](https://www.publish0x.com/tomoyan/blurt-whales-making-big-waves-xdrlqqw?a=4zbqpvkapr) platform, you can change tipping % so I am going to do 3 visualization. * **20% to author / 80% to me** * **50% to author / 50% to me** * **80% to author / 20% to me** to see how **ETH** tipping value is going to be affected. (also **BAT** and **LRC** tokens)  This time I have done, **20% to author / 80% to me** for 1 week and see what happened. Here is the data I have collected and it looks like this π ``` # 20/80 tipping_data = { '1': { 'eth': [0.00002799, 0.00002823, 0.00002823], 'bat': [0.0828, 0.0409], 'lrc': [0.0404, 0.0408] }, '2': { 'eth': [0.00002773], 'bat': [0.0728, 0.0182, 0.0177], 'lrc': [0.0685, 0.0342, 0.0334] }, '3': { 'eth': [0.00002970, 0.00003022], 'bat': [0.0349, 0.0186], 'lrc': [0.1534, 0.0383, 0.0383] }, '4': { 'eth': [0.00011660, 0.00005830, 0.00002915, 0.00002915, 0.00002929], 'bat': [0.0, 0.0], 'lrc': [0.0326, 0.0326] }, '5': { 'eth': [0.00005899, 0.00002950, 0.00002957], 'bat': [0.0654, 0.0158, 0.0158], 'lrc': [0.0344] }, '6': { 'eth': [0.00011296, 0.00005648, 0.00002824, 0.00002844], 'bat': [0.0166], 'lrc': [0.0347, 0.0347] }, '7': { 'eth': [0.00003037, 0.00012029, 0.00006015], 'bat': [0.0191, 0.0191], 'lrc': [0.0332, 0.0340] }, } ``` I am going to take this data and feed the data into python plotly script that I made the other day. Looks like this π  and you can see the graph [here](https://floating-meadow-28045.herokuapp.com/chart-20-80). https://floating-meadow-28045.herokuapp.com/chart-20-80 https://tomoyan.github.io/chart-20-80 Tipping earning avg is about **~$0.10** a day. I think the average 20/80 tip earning used to be like $0.08 so it seems like they did really increased the reward %. (or it could be the **ETH** price) 1 week Average: $0.093 **ETH** Average: $0.054 **BAT** Average: $0.021 **LRC** Average: $0.018 (exchange price is done by using coingecko API) It is nice to see that they are giving more **ETH** > **BAT** or **LRC**. Next week I am going to do 50/50 and see how this is going to change π My Script π ``` from tip_data import tipping_data import plotly.graph_objects as go import requests import statistics def get_price(id): # Call coingecko API to get usd price base_url = 'https://api.coingecko.com/api/v3/simple/price' eth_url = '?ids=ethereum&vs_currencies=usd' bat_url = '?ids=basic-attention-token&vs_currencies=usd' lrc_url = '?ids=loopring&vs_currencies=usd' if id == 'ethereum': try: r = requests.get(base_url + eth_url, timeout=3) r.raise_for_status() except Exception as err: print("Exception Error:", err) return 0.0 elif id == 'basic-attention-token': try: r = requests.get(base_url + bat_url, timeout=3) r.raise_for_status() except Exception as err: print("Exception Error:", err) return 0.0 elif id == 'loopring': try: r = requests.get(base_url + lrc_url, timeout=3) r.raise_for_status() except Exception as err: print("Exception Error:", err) return 0.0 else: return 0.0 return r.json()[id]['usd'] def main(): eth_price = get_price('ethereum') bat_price = get_price('basic-attention-token') lrc_price = get_price('loopring') eth_amount = 0.0 bat_amout = 0.0 lrc_amount = 0.0 days = [] eth_data = [] bat_data = [] lrc_data = [] total_data = [] for key in tipping_data: eth_amount = f"{sum(tipping_data[key]['eth']) * eth_price:.3f}" bat_amout = f"{sum(tipping_data[key]['bat']) * bat_price:.3f}" lrc_amount = f"{sum(tipping_data[key]['lrc']) * lrc_price:.3f}" days.append('Data ' + key) eth_data.append(eth_amount) bat_data.append(bat_amout) lrc_data.append(lrc_amount) tip_total = float(eth_amount) + float(bat_amout) + float(lrc_amount) total_data.append(tip_total) avg_total = f"${statistics.mean(total_data):.3f}" print(avg_total) eth_data = list(map(float, eth_data)) avg_eth = f"${statistics.mean(eth_data):.3f}" print('AVG_ETH: ' + avg_eth) bat_data = list(map(float, bat_data)) avg_bat = f"${statistics.mean(bat_data):.3f}" print('AVG_BAT: ' + avg_bat) lrc_data = list(map(float, lrc_data)) avg_lrc = f"${statistics.mean(lrc_data):.3f}" print('AVG_LRC: ' + avg_lrc) # Daily tipping bar chart fig = go.Figure(data=[ go.Bar(name='BAT', x=days, y=bat_data), go.Bar(name='ETH', x=days, y=eth_data), go.Bar(name='LRC', x=days, y=lrc_data)], layout_title_text=f""" Publish0x Tip 20% Author 80% Me Earning Avg: {avg_total} """ ) fig.update_traces(texttemplate='%{y:.3f}', textposition='outside') fig.add_trace( go.Scatter( name='Tip Total', x=days, y=total_data ) ) # Change the bar mode fig.update_layout( # barmode='stack', xaxis_title="Tip Data", yaxis_title="$ Amount", legend_title="Crypto Tips", ) fig.write_html('chart-20-80.html', auto_open=True) fig.show() if __name__ == '__main__': main() ``` <center> [Get Rewarded For Browsing! Are you Brave?](https://brave.com/tom490) [<img src="https://img.esteem.app/be00j8.png">](https://brave.com/tom490) [](https://tomoyan.github.io/) β‘οΈ [Website](tomoyan.github.io) β‘οΈ [Twitter ](twitter.com/tomoyanTweet) </center>
author | tomoyan | ||||||
---|---|---|---|---|---|---|---|
permlink | publish0x-eth-tipping-data-visualization-20-80 | ||||||
category | python | ||||||
json_metadata | {"links":["https://images.app.goo.gl/vHncZUx7KkSafNVj9","https://www.publish0x.com/tomoyan/blurt-whales-making-big-waves-xdrlqqw?a=4zbqpvkapr","https://floating-meadow-28045.herokuapp.com/chart-20-80","https://floating-meadow-28045.herokuapp.com/chart-20-80","https://tomoyan.github.io/chart-20-80","https://api.coingecko.com/api/v3/simple/price","https://brave.com/tom490","https://brave.com/tom490","https://tomoyan.github.io/"],"image":["https://images.ecency.com/DQmRipePLpJHihNGYQJ5fun6jgRBx6h5Rh1oMqpEGM19FBB/plotting_data_in_python_matplotlib_vs_plotly.png","https://images.ecency.com/DQmbcPb5xVhTsfcVj3D4n2uaCgBxMMoRh7kGnZ3oWPVSyuk/1.png","https://images.ecency.com/DQmPs2nY62BXwr3X6Yka3qdA2Cnqy25T63wvMBcC28SDxVy/2.png","https://img.esteem.app/be00j8.png","https://images.ecency.com/DQmUfaVp5UQvASdTyyLrNiBdGB7NxQfxE2wBpNivcDUkCfe/h.gif"],"tags":["python","plotly","visualization","publish0x","eth","mini","marlians","dblog","palnet","neoxian"],"app":"esteem/2.2.7-surfer","format":"markdown+html","community":"esteem.app"} | ||||||
created | 2020-08-26 14:01:00 | ||||||
last_update | 2020-08-26 14:01:00 | ||||||
depth | 0 | ||||||
children | 3 | ||||||
last_payout | 2020-09-02 14:01:00 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.980 HBD | ||||||
curator_payout_value | 0.957 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 6,334 | ||||||
author_reputation | 144,440,848,820,221 | ||||||
root_title | "Publish0x: ETH Tipping Data Visualization (20/80)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 99,285,775 | ||||||
net_rshares | 6,111,228,993,393 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
chitty | 0 | 283,179,635,884 | 75% | ||
underground | 0 | 3,693,997,162 | 17.5% | ||
tykee | 0 | 5,292,296,259 | 50% | ||
shogo | 0 | 120,721,445,240 | 50% | ||
rafaelaquino | 0 | 9,839,456,174 | 100% | ||
argon | 0 | 142,507,783,056 | 28% | ||
hokkaido | 0 | 669,791,793 | 20% | ||
puncakbukit | 0 | 96,823,802,317 | 20% | ||
pataty69 | 0 | 35,341,352,349 | 100% | ||
kamchore | 0 | 168,837,119,382 | 100% | ||
fourfourfun | 0 | 778,821,790 | 2.88% | ||
conradsuperb | 0 | 1,058,766,380 | 17.5% | ||
fun2learn | 0 | 4,053,250,329 | 3% | ||
bala41288 | 0 | 31,491,389,100 | 10% | ||
warnas | 0 | 37,140,057,108 | 10% | ||
icuz | 0 | 0 | 100% | ||
holger80 | 0 | 1,435,090,226,766 | 33% | ||
yasu | 0 | 3,264,431,657 | 50% | ||
scottshots | 0 | 2,651,181,199 | 4% | ||
tama.arin | 0 | 1,419,313,830 | 100% | ||
paragism | 0 | 31,249,354,118 | 100% | ||
gijoge | 0 | 30,410,972,984 | 100% | ||
brainpod | 0 | 533,117,783 | 25% | ||
payroll | 0 | 170,541,403,524 | 2% | ||
julialee66 | 0 | 401,460,603,549 | 3% | ||
camuel | 0 | 35,257,824,353 | 20% | ||
promobot | 0 | 10,452,025,956 | 11.55% | ||
devilsdad | 0 | 9,685,097,498 | 100% | ||
zainenn | 0 | 12,558,852,606 | 10% | ||
dcooperation | 0 | 8,275,176,255 | 2% | ||
fullnodeupdate | 0 | 9,696,102,507 | 33% | ||
laissez-faire | 0 | 25,941,274 | 100% | ||
handballanalysis | 0 | 8,132,070,265 | 100% | ||
steemcryptosicko | 0 | 492,901,463,906 | 35% | ||
dein-problem | 0 | -6,678,688 | -0.33% | ||
tamito0201 | 0 | 818,373,427 | 50% | ||
pfdm | 0 | 645,118,786 | 10% | ||
likwid | 0 | 106,890,295,891 | 11.55% | ||
spinvest | 0 | 18,191,828,262 | 35% | ||
tonimontana.neo | 0 | 0 | 0.89% | ||
ackerman77 | 0 | 14,755,383,167 | 100% | ||
uthus2k | 0 | 4,365,048,556 | 100% | ||
greatnorthcrypto | 0 | 479,603,246 | 22.5% | ||
lacking | 0 | 60,468,578,135 | 25% | ||
gitplait | 0 | 72,870,955,588 | 100% | ||
mynima | 0 | 4,040,233,973 | 75% | ||
alexbalan | 0 | 3,364,679,720 | 100% | ||
hive.curation | 0 | 2,217,745,790,352 | 63.54% | ||
akhyar23 | 0 | 1,565,658,625 | 100% |
I have picked your post for my daily hive voting initiative, Keep it up and Hive On!!
author | chitty |
---|---|
permlink | re-publish0x-eth-tipping-data-visualization-20-80-20200827t000611 |
category | python |
json_metadata | "" |
created | 2020-08-27 00:06:18 |
last_update | 2020-08-27 00:06:18 |
depth | 1 |
children | 0 |
last_payout | 2020-09-03 00:06:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 86,901,300,608,582 |
root_title | "Publish0x: ETH Tipping Data Visualization (20/80)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,294,510 |
net_rshares | 0 |
Upvoted by GITPLAIT! We have a curation trial on Hive.vote. you can earn a passive income by delegating to [@gitplait](https://hive.vote/dash.php?i=15&id=1&user=gitplait) We share 80 % of the curation rewards with the delegators. ___ _To delegate, use the links or adjust_ [10HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=10%20HP), [20HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=20%20HP), [50HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=50%20HP), [100HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=100%20HP), [200HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=200%20HP), [500HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=500%20HP), [1,000HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=1000%20HP), [10,000HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=10000%20HP), [100,000HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=100000%20HP) ___ Join the [Community](https://hive.blog/trending/hive-103590) and chat with us on [Discord](https://discord.gg/CWCj3rw) letβs solve problems & build together.
author | gitplait |
---|---|
permlink | qfospm |
category | python |
json_metadata | {"links":["https://hive.vote/dash.php?i=15&id=1&user=gitplait","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=10%20HP","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=20%20HP","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=50%20HP","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=100%20HP","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=200%20HP","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=500%20HP","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=1000%20HP","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=10000%20HP","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=100000%20HP","https://hive.blog/trending/hive-103590","https://discord.gg/CWCj3rw"],"app":"hiveblog/0.1"} |
created | 2020-08-26 19:56:15 |
last_update | 2020-08-26 19:56:15 |
depth | 1 |
children | 0 |
last_payout | 2020-09-02 19:56:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,493 |
author_reputation | 911,220,543,569 |
root_title | "Publish0x: ETH Tipping Data Visualization (20/80)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,291,180 |
net_rshares | 0 |
Congratulations @tomoyan! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s) : <table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@tomoyan/comments.png?202008261401"></td><td>You made more than 900 comments. Your next target is to reach 1000 comments.</td></tr> </table> <sub>_You can view [your badges on your board](https://hivebuzz.me/@tomoyan) And compare to others on the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Do not miss the last post from @hivebuzz:** <table><tr><td><a href="/hive-199963/@hivebuzz/meetup-vienna"><img src="https://images.hive.blog/64x128/https://i.imgur.com/UkJTlbu.png"></a></td><td><a href="/hive-199963/@hivebuzz/meetup-vienna">HiveBuzz supports the Austrian Community Meetup</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | hivebuzz-notify-tomoyan-20200826t141723000z |
category | python |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2020-08-26 14:17:21 |
last_update | 2020-08-26 14:17:21 |
depth | 1 |
children | 0 |
last_payout | 2020-09-02 14:17:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 926 |
author_reputation | 369,211,337,513,501 |
root_title | "Publish0x: ETH Tipping Data Visualization (20/80)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,286,018 |
net_rshares | 0 |