It was already time to play with **Beem**, a python library designed to allow developers to easily access HIVE's network without dealing with all the related blockchain technology.  The following shows some **Exploratory Data Analysis** done using **Jupyter Notebooks**. # Gathering Data Let's start by the necessary imports: ``` from beem import Hive from beem.discussions import Query, Discussions from beem.comment import Comment import pandas as pd ``` Get queries and discussions: ``` q = Query(limit=10, tag="") d = Discussions() ``` Get the generator containing the posts: ``` # post list for selected query iter = 10000000 posts = d.get_discussions('hot', q, limit=iter) ``` Above you can see that I used a big iteration number, to get a decent Data Frame to work with. Then I built a dictionary containing only the posts where the **Pending Payout Value** was bigger than 20 HIVE: ``` amount = 20 data = [ { 'ID': post['post_id'], 'Author': post['author'], 'Created': post['created'], 'Title': post['title'], 'Category': post['category'], 'Reputation': post['author_reputation'], 'Votes': len(post['active_votes']), 'Body Length': post['body_length'], 'Tags': post['tags'], 'Metadata': post['json_metadata'], 'Pending payout value': post['pending_payout_value'].amount, 'Community': post['community']} \ for post in posts if post['pending_payout_value'].amount > amount ] ``` Then I converted the data into a dictionary, and saved as a .csv. ``` df = pd.DataFrame.from_dict(data) df.to_csv('hive_data.csv') ``` Gathering the data took some time, because of so many iterations. # Analysing the Data More imports: ``` import pandas as pd import seaborn as sns import plotly as px import matplotlib.pyplot as plt import warnings warnings.filterwarnings('ignore') ``` Convert the .csv back into a Data Frame and sort by **Pending Payout Value**. ``` df = pd.read_csv('hive_data.csv') df.drop([df.columns[0]], axis = 1, inplace = True) df = df.sort_values(by=df.columns[-2], ascending=False) ``` ### Categories that generate the most value per post The following results, don't show the categories that generate the most value, only the ones where the posts raised more than 20 HIVE. In addition I'm working with a "small" Dataset, taking into account the history of the blockchain. I grouped by **Category** and did a sum of the cells. Then I took the 20 best performing categories. ``` df_cat = df.groupby(by=['Category'])\ .sum().sort_values(by=df.columns[-2], ascending=False) df_cat_best = df_cat.head(20) ``` A bar plot displaying the results:  Any surprises? **Leo Finance** and **Pinmapple**, clearly stand out compared to the other categories. ### Correlations Do the features correlate? Number of votes with Pending Payout Value? Reputation? ``` import ast df_corr = df[['Reputation', 'Votes', 'Body Length', 'Tags', 'Pending payout value']] df_corr['Tags'] = df_corr['Tags'].apply(lambda x: ast.literal_eval(x)) df_corr['Number of Tags'] = df_corr['Tags'].apply(lambda x: len(x)) ``` Above, I used the library "ast" to use the function `ast.literal_eval()`. Because when saving a list in a .csv cell, it is saved as a string instead. This function allows me to convert it back into a list. I also created another feature called "Length of Tags". Plotting a heatmap: ``` sns.heatmap(df_corr.corr(), cmap="YlGnBu"); ```  From the heatmap above we can see that there aren't any strong correlation between features. The number of votes it's slightly correlated with the payout value. But reputation, number of tags and body length do not seem to affect the amount of rewards. ## What about the tags? Taking into account the column having the list of tags, it was interesting to see which ones are contributing to the most value. Obviously this is not a proper analysis, because the tags should be in equal value along the sample, to know exactly which ones have the strongest influence, which is not the case. ``` df_temp_tags = df_corr.explode('Tags')\ .drop(['Length Tags', 'Reputation', 'Body Length'], axis=1) df_temp_tags['Tag Counts'] = df_temp_tags['Tags'].apply(lambda x: 1) df_tags = df_temp_tags.groupby('Tags')\ .sum().sort_values(by='Pending payout value', ascending=False) df_tags ``` Above, I "exploded" the list of tags inside the lists and then I counted them. With the new features, I did a new heatmap: ``` sns.heatmap(df_tags.corr(), cmap="YlGnBu"); ```  As expected, the "Tag Counts" is correlated with the Pending Payout Value, once again this doesn't mean that the tags with the most counts are the most effective, it can mean that most of the posts use the same tag. Let's still see a bar plot of the best performing tags in this analysis:  The "neoxian" tag seems to be the best performing between all. Might be using it for this post, along with "proofofbrain" 😁 Expect more content on Exploratory Data Analysis using Beem, I'm not done yet with this library. See you soon!
author | macrodrigues | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | exploratory-data-analysis-on-hive | ||||||||||||||||||
category | hive-163521 | ||||||||||||||||||
json_metadata | {"app":"peakd/2022.07.1","format":"markdown","tags":["neoxian","proofofbrain","hive","stem","python","development"],"users":[],"image":["https://files.peakd.com/file/peakd-hive/macrodrigues/23uRLNvq1PkSEuYTa7yt1f6ApPgVaCDUkutZND45peVBWW9qbuAxcJwaQxv4997HU389N.png","https://files.peakd.com/file/peakd-hive/macrodrigues/23xpWCjeuBJMjUWRWy7DwBJ2bcMKBa8ukzCrYfAL1NV8M84HJ4gLfufu9yzXix8xHbn57.png","https://files.peakd.com/file/peakd-hive/macrodrigues/23ynojgz9669hbaFH7Qox7k7ZueA2jBWt2PPdMFgm4kpf3HygBo8DCJNnLWjWnQS53Crc.png","https://files.peakd.com/file/peakd-hive/macrodrigues/245Hz4eS6hoE13RxzL17XLEcNZfZNDeCx24PX81w9H8BeVuDQqPE5CK4HxU6Hue7h9JPM.png","https://files.peakd.com/file/peakd-hive/macrodrigues/23zbkxjQ2kmjcyVGNxXdQMay94XUgRXGPR1DiVtztEoW4swxpRkdmV16gcpHYshj4LS7T.png"]} | ||||||||||||||||||
created | 2022-08-30 00:37:03 | ||||||||||||||||||
last_update | 2022-08-30 00:37:03 | ||||||||||||||||||
depth | 0 | ||||||||||||||||||
children | 5 | ||||||||||||||||||
last_payout | 2022-09-06 00:37:03 | ||||||||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||||||||
total_payout_value | 9.766 HBD | ||||||||||||||||||
curator_payout_value | 10.216 HBD | ||||||||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||||||||
promoted | 0.000 HBD | ||||||||||||||||||
body_length | 5,775 | ||||||||||||||||||
author_reputation | 1,290,502,251,141 | ||||||||||||||||||
root_title | "Exploratory Data Analysis on HIVE" | ||||||||||||||||||
beneficiaries |
| ||||||||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||||||||
percent_hbd | 10,000 | ||||||||||||||||||
post_id | 116,154,018 | ||||||||||||||||||
net_rshares | 29,079,655,006,189 | ||||||||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drifter1 | 0 | 36,188,413,031 | 100% | ||
eric-boucher | 0 | 1,839,017,502 | 0.4% | ||
thecryptodrive | 0 | 6,068,681,659 | 0.16% | ||
mammasitta | 0 | 1,285,340,937 | 0.4% | ||
roelandp | 0 | 17,087,327,727 | 2.1% | ||
cloh76 | 0 | 526,507,992 | 0.4% | ||
lordvader | 0 | 7,234,108,847 | 0.8% | ||
rmach | 0 | 2,763,331,503 | 5% | ||
lemouth | 0 | 246,331,002,059 | 10% | ||
lamouthe | 0 | 726,561,268 | 10% | ||
tfeldman | 0 | 717,845,120 | 0.4% | ||
mcsvi | 0 | 106,231,075,610 | 50% | ||
justyy | 0 | 3,950,501,925 | 0.8% | ||
curie | 0 | 93,374,174,963 | 0.8% | ||
rishi556 | 0 | 21,322,205,517 | 100% | ||
techslut | 0 | 23,749,888,642 | 4% | ||
roguewriter | 0 | 4,505,466,039 | 5% | ||
steemstem | 0 | 580,863,225,580 | 10% | ||
oleg326756 | 0 | 699,369,471 | 1.5% | ||
edb | 0 | 983,628,050 | 1% | ||
yadamaniart | 0 | 2,680,069,989 | 3% | ||
justinw | 0 | 7,923,360,196 | 1.88% | ||
walterjay | 0 | 61,303,986,033 | 5% | ||
valth | 0 | 1,480,688,537 | 5% | ||
askari | 0 | 7,161,724,129 | 6% | ||
dna-replication | 0 | 346,868,340 | 10% | ||
dhimmel | 0 | 53,325,503,603 | 2.5% | ||
oluwatobiloba | 0 | 1,064,011,827 | 10% | ||
detlev | 0 | 2,330,622,615 | 0.24% | ||
federacion45 | 0 | 1,236,281,065 | 0.4% | ||
mobbs | 0 | 9,070,867,259 | 5% | ||
jerrybanfield | 0 | 2,710,109,190 | 0.8% | ||
roomservice | 0 | 640,401,170 | 0.4% | ||
rt395 | 0 | 1,412,328,121 | 1.5% | ||
bitrocker2020 | 0 | 1,322,028,845 | 0.12% | ||
newsflash | 0 | 2,788,099,314,479 | 4.5% | ||
yehey | 0 | 1,578,261,509 | 0.8% | ||
rawselectmusic | 0 | 1,160,983,970 | 3% | ||
samminator | 0 | 1,636,877,235 | 0.5% | ||
lorenzor | 0 | 1,273,302,438 | 50% | ||
alexander.alexis | 0 | 5,617,191,883 | 10% | ||
jayna | 0 | 752,784,662 | 0.16% | ||
ew-and-patterns | 0 | 8,404,587,093 | 3% | ||
guchtere | 0 | 556,116,921 | 2.85% | ||
techken | 0 | 3,717,677,937 | 5% | ||
ludmila.kyriakou | 0 | 1,926,668,506 | 3% | ||
analealsuarez | 0 | 1,293,579,814 | 50% | ||
minnowbooster | 0 | 1,133,342,887,936 | 20% | ||
howo | 0 | 292,425,243,039 | 10% | ||
tsoldovieri | 0 | 997,798,609 | 5% | ||
neumannsalva | 0 | 575,956,963 | 0.4% | ||
stayoutoftherz | 0 | 17,079,870,227 | 0.2% | ||
abigail-dantes | 0 | 3,643,005,955 | 10% | ||
ocd | 0 | 808,652,510,191 | 6% | ||
macchiata | 0 | 14,862,867,211 | 3% | ||
zonguin | 0 | 597,853,715 | 2.5% | ||
martibis | 0 | 2,462,137,656 | 1.8% | ||
redrica | 0 | 2,098,477,021 | 3.13% | ||
iamphysical | 0 | 15,194,141,977 | 90% | ||
revo | 0 | 1,384,027,869 | 0.8% | ||
azulear | 0 | 1,640,782,014 | 100% | ||
psicoluigi | 0 | 744,078,914 | 50% | ||
thelordsharvest | 0 | 631,571,918 | 0.8% | ||
sorin.cristescu | 0 | 3,213,341,189 | 0.4% | ||
therealwolf | 0 | 9,341,616,920 | 0.8% | ||
yangyanje | 0 | 1,583,946,275 | 0.4% | ||
jlsplatts | 0 | 21,266,876,760 | 2% | ||
meno | 0 | 3,065,640,915 | 0.4% | ||
steemseph | 0 | 10,886,039,662 | 10% | ||
hanggggbeeee | 0 | 518,830,335 | 3% | ||
enzor | 0 | 603,584,485 | 10% | ||
bartosz546 | 0 | 1,008,043,610 | 0.4% | ||
carloserp-2000 | 0 | 750,866,236 | 100% | ||
eonwarped | 0 | 41,187,008,836 | 1.8% | ||
postpromoter | 0 | 22,340,750,843 | 0.8% | ||
steveconnor | 0 | 523,574,062 | 0.4% | ||
nicole-st | 0 | 1,777,322,460 | 0.4% | ||
smartsteem | 0 | 31,735,145,900 | 0.8% | ||
aboutcoolscience | 0 | 529,986,445 | 10% | ||
kenadis | 0 | 2,631,282,720 | 10% | ||
robotics101 | 0 | 2,285,616,567 | 10% | ||
punchline | 0 | 1,893,780,027 | 0.8% | ||
straykat | 0 | 734,251,662 | 3% | ||
tomatom | 0 | 616,936,196 | 3% | ||
fourfourfun | 0 | 14,826,701,658 | 50% | ||
spydo | 0 | 10,397,516,126 | 3% | ||
sco | 0 | 2,572,943,678 | 10% | ||
ennyta | 0 | 930,514,175 | 50% | ||
ronpurteetv | 0 | 542,436,339 | 3% | ||
gabrielatravels | 0 | 777,489,910 | 2.4% | ||
intrepidphotos | 0 | 175,881,734,263 | 7.5% | ||
fragmentarion | 0 | 2,085,656,539 | 10% | ||
pab.ink | 0 | 5,929,817,347 | 5% | ||
steemflagrewards | 0 | 383,045,317,701 | 100% | ||
miguelangel2801 | 0 | 746,615,789 | 50% | ||
warpedpoetic | 0 | 548,968,929 | 2.85% | ||
ocd-witness | 0 | 3,612,959,722 | 6% | ||
geopolis | 0 | 622,423,753 | 10% | ||
robertbira | 0 | 1,039,524,906 | 2.5% | ||
alexdory | 0 | 1,472,170,687 | 10% | ||
irgendwo | 0 | 1,596,130,562 | 0.8% | ||
melvin7 | 0 | 3,130,625,410 | 5% | ||
francostem | 0 | 1,342,569,987 | 10% | ||
endopediatria | 0 | 683,661,414 | 20% | ||
superlotto | 0 | 2,594,203,842 | 0.8% | ||
miroslavrc | 0 | 1,656,269,738 | 3% | ||
tomastonyperez | 0 | 16,099,747,318 | 50% | ||
elvigia | 0 | 10,476,992,575 | 50% | ||
sanderjansenart | 0 | 650,103,886 | 0.4% | ||
obsesija | 0 | 1,264,723,627 | 2.85% | ||
gadrian | 0 | 30,974,118,242 | 7.5% | ||
de-stem | 0 | 5,449,304,376 | 9.9% | ||
josedelacruz | 0 | 4,331,963,760 | 50% | ||
meanbees | 0 | 16,495,465,415 | 10% | ||
indigoocean | 0 | 1,339,687,622 | 3% | ||
deholt | 0 | 539,621,045 | 8.5% | ||
veteranforcrypto | 0 | 569,740,046 | 1.8% | ||
anneporter | 0 | 722,552,414 | 3% | ||
diabonua | 0 | 612,081,142 | 0.4% | ||
enforcer48 | 0 | 206,689,830,812 | 20% | ||
temitayo-pelumi | 0 | 796,533,394 | 10% | ||
andrick | 0 | 811,981,018 | 50% | ||
motherofalegend | 0 | 1,320,596,712 | 5% | ||
doctor-cog-diss | 0 | 7,604,035,012 | 10% | ||
uche-nna | 0 | 630,469,258 | 0.64% | ||
anaestrada12 | 0 | 1,022,792,518 | 100% | ||
haccolong | 0 | 1,797,494,693 | 3% | ||
ocdb | 0 | 19,893,343,241,093 | 5.7% | ||
bflanagin | 0 | 842,765,586 | 0.4% | ||
dalz | 0 | 768,066,750,338 | 100% | ||
goblinknackers | 0 | 977,677,591 | 7% | ||
hoaithu | 0 | 658,618,444 | 2.55% | ||
cleanplanet | 0 | 2,181,375,994 | 0.24% | ||
mobi72 | 0 | 581,412,773 | 3% | ||
fran.frey | 0 | 3,961,449,285 | 50% | ||
pradeepdee6 | 0 | 2,970,742,761 | 2.4% | ||
thelittlebank | 0 | 2,319,862,062 | 0.4% | ||
pboulet | 0 | 14,923,902,655 | 8% | ||
javyeslava.photo | 0 | 1,000,032,539 | 2.1% | ||
stem-espanol | 0 | 25,167,674,068 | 100% | ||
admiralbot | 0 | 6,310,730,540 | 100% | ||
athunderstruck | 0 | 1,268,809,322 | 3% | ||
brianoflondon | 0 | 4,136,639,811 | 0.12% | ||
tsunsica | 0 | 704,537,343 | 6% | ||
giulyfarci52 | 0 | 1,617,727,929 | 50% | ||
steemcryptosicko | 0 | 1,545,164,602 | 0.16% | ||
multifacetas | 0 | 500,720,801 | 3% | ||
stem.witness | 0 | 545,383,491 | 10% | ||
devann | 0 | 4,047,511,493 | 3% | ||
variedades | 0 | 783,953,022 | 2.28% | ||
wilmer14molina | 0 | 965,494,909 | 50% | ||
crowdwitness | 0 | 3,441,878,499 | 5% | ||
apokruphos | 0 | 2,761,689,746 | 1% | ||
eternalsuccess | 0 | 754,093,092 | 0.8% | ||
limka | 0 | 114,602,997 | 78.41% | ||
steemean | 0 | 9,941,756,787 | 5% | ||
photographercr | 0 | 2,494,308,099 | 1.14% | ||
squareonefarms | 0 | 577,780,220 | 3% | ||
memehub | 0 | 87,109,962,786 | 100% | ||
epicdice | 0 | 531,734,451 | 0.24% | ||
tinyhousecryptos | 0 | 494,542,589 | 5% | ||
aninsidejob | 0 | 6,267,952,380 | 100% | ||
aicu | 0 | 3,591,511,435 | 0.8% | ||
walterprofe | 0 | 23,858,772,705 | 50% | ||
zeruxanime | 0 | 650,094,858 | 5% | ||
freedomring | 0 | 580,989,595 | 0.9% | ||
stemgeeks | 0 | 22,803,936,192 | 60% | ||
stemcuration | 0 | 1,406,904,915 | 60% | ||
babytarazkp | 0 | 4,277,256,047 | 40% | ||
abh12345.stem | 0 | 596,256,309 | 30% | ||
zeesh | 0 | 1,402,249,960 | 3% | ||
steemstem-trig | 0 | 776,786,391 | 10% | ||
yggdrasil.laguna | 0 | 328,622,198 | 30% | ||
atheistrepublic | 0 | 764,563,163 | 0.4% | ||
roamingsparrow | 0 | 974,543,649 | 0.4% | ||
chapmain | 0 | 98,840,281 | 100% | ||
peterale | 0 | 1,565,742,784 | 0.4% | ||
stuntman.mike | 0 | 9,047,681,190 | 100% | ||
hivetrending | 0 | 398,917,917,588 | 100% | ||
laruche | 0 | 41,461,700,598 | 1% | ||
stemsocial | 0 | 82,220,843,394 | 10% | ||
velinov86 | 0 | 2,632,092,427 | 2.85% | ||
fakegod | 0 | 682,124,366 | 100% | ||
actioncats | 0 | 4,851,306,607 | 3% | ||
olaunlimited | 0 | 4,413,271,964 | 2.4% | ||
kawsar8035 | 0 | 1,385,406,422 | 1.71% | ||
aabcent | 0 | 1,500,014,025 | 0.64% | ||
dorkpower | 0 | 1,025,459,654 | 30% | ||
stemcur | 0 | 843,998,540 | 100% | ||
meritocracy | 0 | 8,894,643,540 | 0.08% | ||
stemline | 0 | 3,851,320,907 | 30% | ||
sillybilly | 0 | 500,530,256 | 100% | ||
meestemboom | 0 | 447,758,146 | 25% | ||
scooter77.stem | 0 | 624,287,670 | 60% | ||
cielitorojo | 0 | 5,405,635,430 | 3.99% | ||
krishu.stem | 0 | 1,052,045,286 | 100% | ||
ruari | 0 | 857,719,342 | 100% | ||
peerfinance | 0 | 27,028,783,751 | 100% | ||
traderhive | 0 | 714,645,908 | 0.8% | ||
adamada.stem | 0 | 1,208,058,838 | 100% | ||
karenina.pecas | 0 | 740,046,749 | 100% | ||
leveluplifestyle | 0 | 1,413,798,216 | 3% | ||
brujita18 | 0 | 1,054,586,803 | 3% | ||
holovision.stem | 0 | 498,518,560 | 50% | ||
partiesjohall | 0 | 1,037,379,809 | 6% | ||
aprasad2325 | 0 | 1,038,331,436 | 2.85% | ||
star.stem | 0 | 1,807,549,111 | 50% | ||
solominer.stem | 0 | 807,577,999 | 100% | ||
irivers | 0 | 3,143,623,099 | 100% | ||
ivycrafts | 0 | 778,590,312 | 3% | ||
seinkalar | 0 | 830,586,734 | 0.8% | ||
aries90 | 0 | 5,397,672,857 | 0.8% | ||
migka | 0 | 3,709,020,540 | 90% | ||
trasto | 0 | 2,779,825,209 | 50% | ||
nane-qts | 0 | 7,213,108,153 | 100% | ||
fairyberry | 0 | 1,026,030,181 | 2.85% | ||
waivio.curator | 0 | 1,418,740,203 | 2.72% | ||
saboin.stem | 0 | 507,754,724 | 60% | ||
tristan.todd | 0 | 1,011,863,584 | 6% | ||
dondido | 0 | 3,245,204,367 | 0.8% | ||
theawesononso | 0 | 592,311,247 | 3% | ||
xocdb | 0 | -56,984,206 | -5.7% | ||
dalz.spkcc | 0 | 3,853,047,154 | 50% | ||
thoth442 | 0 | 8,933,334,640 | 100% | ||
minas-glory | 0 | 741,085,852 | 0.4% | ||
the-grandmaster | 0 | 630,237,462 | 0.4% | ||
the-burn | 0 | 807,757,477 | 0.4% |
Wonderful post! Have a !PIZZA
author | cryptothesis |
---|---|
permlink | re-macrodrigues-2022116t1331827z |
category | hive-163521 |
json_metadata | {"tags":["neoxian","proofofbrain","hive","stem","python","development"],"app":"ecency/3.0.28-vision","format":"markdown+html"} |
created | 2022-11-06 05:03:18 |
last_update | 2022-11-06 05:03:18 |
depth | 1 |
children | 0 |
last_payout | 2022-11-13 05:03: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 | 29 |
author_reputation | 125,080,746,437,045 |
root_title | "Exploratory Data Analysis on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 118,101,965 |
net_rshares | 0 |
Congratulations @macrodrigues! 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/@macrodrigues/upvoted.png?202208311041"></td><td>You received more than 1500 upvotes.<br>Your next target is to reach 1750 upvotes.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@macrodrigues) and compare yourself to others in 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> **Check out the last post from @hivebuzz:** <table><tr><td><a href="/hive-122221/@hivebuzz/pud-202209"><img src="https://images.hive.blog/64x128/https://i.imgur.com/805FIIt.jpg"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202209">Hive Power Up Day - September 1st 2022</a></td></tr></table> ###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22199%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/199)!
author | hivebuzz |
---|---|
permlink | notify-macrodrigues-20220831t105512 |
category | hive-163521 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2022-08-31 10:55:15 |
last_update | 2022-08-31 10:55:15 |
depth | 1 |
children | 0 |
last_payout | 2022-09-07 10:55: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,131 |
author_reputation | 369,598,413,474,979 |
root_title | "Exploratory Data Analysis on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 116,193,301 |
net_rshares | 0 |
<center>🍕 PIZZA ! I gifted <strong>$PIZZA</strong> slices here: @cryptothesis<sub>(3/15)</sub> tipped @macrodrigues (x1) <sub>Please <a href="https://vote.hive.uno/@pizza.witness">vote for pizza.witness</a>!</sub></center>
author | pizzabot |
---|---|
permlink | re-exploratory-data-analysis-on-hive-20221106t050346z |
category | hive-163521 |
json_metadata | "{"app": "beem/0.24.19"}" |
created | 2022-11-06 05:03:45 |
last_update | 2022-11-06 05:03:45 |
depth | 1 |
children | 0 |
last_payout | 2022-11-13 05:03:45 |
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 | 226 |
author_reputation | 7,836,448,326,862 |
root_title | "Exploratory Data Analysis on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 118,101,968 |
net_rshares | 0 |
https://twitter.com/HiveTrending/status/1564625098748809217 <sub> The rewards earned on this comment will go directly to the people( @hivetrending ) sharing the post on Twitter as long as they are registered with @poshtoken. Sign up at https://hiveposh.com.</sub>
author | poshtoken | ||||||
---|---|---|---|---|---|---|---|
permlink | re-macrodrigues-exploratory-data-analysis-on-hive49663 | ||||||
category | hive-163521 | ||||||
json_metadata | "{"app":"Poshtoken 0.0.1","payoutToUser":["hivetrending"]}" | ||||||
created | 2022-08-30 14:45:06 | ||||||
last_update | 2022-08-30 14:45:06 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2022-09-06 14:45:06 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.226 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 264 | ||||||
author_reputation | 5,990,171,961,071,041 | ||||||
root_title | "Exploratory Data Analysis on HIVE" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 0 | ||||||
post_id | 116,169,973 | ||||||
net_rshares | 638,795,304,895 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidyo | 0 | 638,795,304,895 | 5% |
<div class='text-justify'> <div class='pull-left'> <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div> Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us! Please consider delegating to the @stemsocial account (85% of the curation rewards are returned). You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-macrodrigues-exploratory-data-analysis-on-hive-20220830t035852100z |
category | hive-163521 |
json_metadata | {"app":"STEMsocial"} |
created | 2022-08-30 03:58:51 |
last_update | 2022-08-30 03:58:51 |
depth | 1 |
children | 0 |
last_payout | 2022-09-06 03:58:51 |
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 | 565 |
author_reputation | 22,935,093,304,060 |
root_title | "Exploratory Data Analysis on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 116,158,030 |
net_rshares | 17,557,577,317 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
macrodrigues | 0 | 17,557,577,317 | 100% |