What is Steemit's daily active user count?
Question originally asked on Musing.io - Click here to see other answers
Define active users?
I would say users that comment or post on steemit.
Using SteemSQL, I run this query to check the amount of post (comments, resteem, post)
SELECT
COUNT(DISTINCT author) AS Authors
FROM
Comments
WHERE
created >= '2018/05/16' AND
created < '2018/05/17'
There are 28113 authors writting post on 2018/05/16
Only 2.8%?
It is a bias data, cuz I only take 1 day. To properly calculate maybe take a week will be better