Ok here we go.
Back in April I asked exactly the same question: How active is each replica board and how fast do they grow? The answer was simple: Write down the total amount of posts and members each day and fill a database with it. From there I made a simple calculation:
PHP:
<?php
foreach($rwi_posts as $rwi_post) {
$start = 2125330;
$show = (isset($prev) ? $rwi_post - $prev : $rwi_post - $start);
$prev = $rwi_post;
echo $show . ",";
}
$start is the amount of posts on the very first day, we then loop over each day and take off the previous day. This way we would get a number of daily posts / members. The exact same thing has been done for each replica board I was aware of ( RWI, RG, RWGbz, RWGjr and RHN ).
I've just made the results public on this URL:
https://forum.replica-watch.info/stats.php
This is a 15 day period of daily new posts/members statistics.
To add on top I'll make a quick comparison between RG and RWI:
RWI on 2015-04-30:
members: 92620
posts: 2145786
RG on 2015-04-30:
members: 58947
posts: 2535791
RWI today:
members: 104755
posts: 2358015
RG today:
members: 61365
posts: 2586877
So, since the 30th of april the boards have grown with:
RWI: 212,229 posts & 12,135 members
RG: 51,086 posts & 2,418 members...
So RWI is 4,15x as active as RG when it comes to posts and does grow about 5x faster in members.
I'm a geek when it comes to stats. Thanks for a great topic
