Steem is a blockchain-based social media platform (see < https://en.wikipedia.org/wiki/Steemit>). The Steem social activity data are saved in the Steem blockchain, the SteemDB database, the SteemSQL database, and so on. 'steemr' is an R package that downloads the Steem data from the SteemDB and SteemSQL servers, re-organizes the data in a user-friendly way, and visualizes the data for further analysis.
steemr is an open source R package for playing with Steem data in the R environment. It can download, post process, analyze, and visualize Steem data on the basis of the powerful statistic power of R. Currently, the version 0.0.0 can:
install.packages('devtools')
devtools::install_github('pzhaonet/steemr')
library('steemr')
id_info(id = 'dapeng')
follower(id = 'dapeng')
following(id = 'dapeng')
post_links(id = 'dapeng', post_number = 3)
post_info(postlink = 'utopian-io/@dapeng/steemg-four-more')
post_df(c('cn/@dapeng/xuer-sale', 'utopian-io/@dapeng/steemg-four-more'))
post_id(id = 'dapeng', post_number = 10)
More functions are coming soon. Have fun!
2018-06-12. v0.0.1. A bug of the hyperlinks was fixed.
2018-06-11. v0.0.0. A preliminary version.
Copyright 2018 Peng Zhao.
Released under the MIT license.