RE: STEEMIT || AN EXPONENTIAL SMOOTHING PEEP INTO THE FUTURE

in #utopian-io5 years ago

Repository

e.g. https://github.com/utopian-io/utopian.io

Introduction

Sometime last year I did an analysis using exponential smoothing to try to predict the future of Steemit. I covered areas such as new accounts that would be created, number of posts and distinct authors, number of votes and distinct voters and payout forecast. The potency of any prophesy or prediction is to check the degree of accuracy of the predicted indices.

In case you missed the initial post you can read about it here

What is Exponential smoothing?
It is a statistical technique used for time series forecasting and it is based on past observations. The past observations are weighted and used to predict the coming months

Outline

  • Scope
  • Results
  • Conclusion
  • Tools and Scripts

Scope

Date of the analysis: 10th April 2019

The time frame of the analyzed data: August 2018 to December 2018

Components of the analysis: checking data from the database to compare with predicted data.

Results

ACCOUNT CREATED.

DATEACCOUNT FORECASTACTUAL ACCTS CREATEDPERCENTAGE DIFFERENCE
Aug-1848,77522,325-54%
Sep-1841,82225,442-39%
Oct-1856,76321,421-62%
Nov-1850,54114,671-71%
Dec-1863,3243,866-94%
TOTAL261,22487,725-66%


In 2017, the number of new accounts created monthly was always fluctuating. People were just joining from recommendations of existing users. The initial evangelist of Steemit always used lines like social media that pay.

Steemit came with a lot of hype, a hype that didn't last long. With the price of cryptos going down, it was now clear why many joined the platform. They didn't join because they wanted to change the world, the joined because they wanted to make some money for themselves.

There were insinuations among crypto enthusiasts that the price of the cryptocurrency would bounce back to their former glory. Everyone believed it; including me. But it was not to be, the price of steem and other cryptos never recovered.

On this forecast, it fell far from the actual figures. The prediction deviated by about 66% of the actual values.

image.png

NUMBER OF POST
DATEPOST FORECASTACTUAL NO OF POSTPERCENTAGE DIFFERENCE
Aug-18933,766495,921-47%
Sep-18878,518357,923-59%
Oct-181,007,437299,233-70%
Nov-181,149,119429,758-63%
Dec-181,093,870671,330-39%
TOTAL5,062,7102,254,165-55%



One of the ways of checking how active or interactive a social media platform is, is by checking the number of posts made by users. The number of posts for August to December 2018, saw fluctuations in varying degrees.

My observation was that as the price of steem dropped, users were reluctant to make a new post as they seem not to get value for their content.

The prediction deviated by about 55%

image.png

DISTINCT AUTHORS
DATEDISTINCT AUTHORS FORECASTACTUAL NO OF DISTINCT AUTHORSPERCENTAGE DIFFERENCE
Aug-1879,04447,364-40%
Sep-1879,67036,534-54%
Oct-1889,69827,254-70%
Nov-1886,22842,655-51%
Dec-1890,02469,721-23%
TOTAL424,665223,528-47%



With the number of posts reducing drastically, it is only logical to find out that the number of distinct authors also dropped.

The forecasted values deviated by 47%

image.png

VOTES
DATEFORECAST VOTESACTUAL NUMBER OF VOTESPERCENTAGE DIFFERENCE
Aug-1820,275,73521,311,9645%
Sep-1820,592,97517,022,727-17%
Oct-1821,131,90617,523,597-17%
Nov-1821,359,49515,930,248-25%
Dec-1824,360,11118,721,406-23%
TOTAL107,720,22390,509,942-16%



This was the best performing prediction. The prediction deviated by merely 16%. Voting on Steemit is the easiest activity a user can carry out, it takes less than a second. People vote more than any other thing on the platform.

image.png

DISTINCT VOTERS

DATEDISTINCT VOTERS FORECASTACTUAL NO OF DISTINCT VOTERSPERCENTAGE DIFFERENCE
Aug-18125,214107,666-14%
Sep-18124,98799,830-20%
Oct-18139,01086,679-38%
Nov-18135,13474,949-45%
Dec-18141,55293,032-34%
TOTAL665,897462,156-31%



Distinct voter means the number of different voters that voted within a period of time. Just like we saw in the number of votes made in the period under review, the number of distinct voters was not also far from the predicted values. The prediction deviated by about 31% of the true values.

image.png

TOTAL PAYOUT

DATETOTAL PAYOUT FORECASTACTUAL TOTAL FORECASTPERCENTAGE DIFFERENCE
Aug-18906,644880,937-3%
Sep-182,837,349752,166-73%
Oct-183,652,936582,088-84%
Nov-183,597,1321,326,118-63%
Dec-183,001,0221,358,370-55%
TOTAL13,995,0834,899,678-65%



For me, this is the backbone of Steemit. There is nothing that affects activities on Steemit like the price of Steem. Over time it has been proven that there is a direct correlation between the price of Steem and the amount of activity on Steemit.

Cryptocurrency is among the most volatile markets we have, a steep increase today can be followed by another steep decrease tomorrow. No one really knows the tomorrow of cryptocurrency and as such

image.png

Conclusion

The prediction didn't turn out as we all would have loved. The numbers are no longer encouraging. Users have deserted the platform and other similar social media websites have emerged, creating a competition. These platforms have come with different approaches and most try to solve the problems that people have always complained about on Steemit.

Steemit is now facing competition from other platforms in terms of revenue and sustainability. I believe it is this pressure that has led Steemit to now accept ads, something we never thought would happen.

Can Steemit return to its glory days? I don't think so, but with some changes, the right people can return and find their way around.

The fall of crypto currency did not also help the cause of Steemit. In the future, predictions would still be difficult because of the many factors involved in making the platform a very volatile one. One which is prone to unpredictable variables having a big say.

Tools and Scripts

Microsoft SQL Server Management Studio 17 was used to access the data from STEEMSQL ( a publicly managed database by @arcange )

Microsoft Excel 2019 was used to plot graphs and Charts.

Scripts

For number of votes

SELECT count (txvotes.voter) AS Votes, count (distinct txvotes.voter) AS [distinctVoters] FROM TXVOTES WHERE timestamp>= CONVERT(datetime,'08/01/2018') AND timestamp< CONVERT(datetime,'12/31/2018') GROUP BY MONTH (txvotes.timestamp)

For accounts created

SELECT count (accounts.created) AS [ACCTS] FROM ACCOUNTS WHERE (Convert(date, accounts.created) >= '2018-08-01' AND Convert(date, accounts.created) <= '2018-12-31') GROUP BY MONTH(accounts.created)

For number of post, Distinct Authors And Payout

SELECT count(comments.created) AS [POST], Count(distinct Comments.author) AS [DistinctAuthor], sum(CONVERT(REAL,Comments.total_payout_value)) AS [TotalPayoutValue], sum(CONVERT(REAL,Comments.curator_payout_value)) AS [CuratorPayoutValue] FROM COMMENTS WHERE (Convert(date, comments.created) >= '2018-08-01' AND Convert(date, comments.created) <= '2018-12-31') and DEPTH = 0 GROUP BY MONTH(comments.created)

Proof of Authorship

https://github.com/jingis07

Sort:  
Loading...

Congratulations @jingis07! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

You distributed more than 14000 upvotes. Your next target is to reach 15000 upvotes.

You can view your badges on your Steem Board and compare to others on the Steem Ranking
If you no longer want to receive notifications, reply to this comment with the word STOP

Vote for @Steemitboard as a witness to get one more award and increased upvotes!

Hi @jingis07!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your post is eligible for our upvote, thanks to our collaboration with @utopian-io!
Feel free to join our @steem-ua Discord server

Hey, @jingis07!

Thanks for contributing on Utopian.
We’re already looking forward to your next contribution!

Get higher incentives and support Utopian.io!
Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via SteemPlus or Steeditor).

Want to chat? Join us on Discord https://discord.gg/h52nFrV.

Vote for Utopian Witness!

Coin Marketplace

STEEM 0.19
TRX 0.15
JST 0.029
BTC 63651.41
ETH 2679.55
USDT 1.00
SBD 2.80