user retention

Calculating Downloads

I recently hit 70,000 downloads on Countdown Plugin, a small plugin I wrote for WordPress about five years ago. Actually, the timer is older than that. I’ve only been using WordPress since my freshman year of college (spring semester circa 2005), before that I had this crazy home brew content management system. Part of that system included the original source of Countdown Timer. When I made the move to WordPress, I forked the code and made it into a WordPress plugin. The basic and display of the timer has remained relatively similar, although the code has pretty much been rewritten.

Download stats with 10- and 40-day moving averages

I digress. Having 70,000 is a great accomplishment. However, it’s not a very telling metric. What I really want to know is how many people are using the plugin currently?

In order to get an idea of how many active users there are, I looked at two pieces of data:

  • Temporal downloads prior to my last release
  • Temporal downloads subsequent to my last release

The theory is that when a new update is released, an upgrade notice goes out to all users of the plugin. This is the cause of the massive spike in downloads. By eliminating the background noise downloads (i.e. people just trying it out), I can calculate the area under the curve and get a rough estimate of the number of users.

I fit a power regression line to the subsequent downloads with an R2 value of 0.83, which is a little lower than I would have liked, but still usable, described by the equation:615.16x^{-0.481}

The average downloads for the 24 days prior to the release were 81.375 downloads/day. Using WolframAlpha, I solved for the intersection of the two lines:
x = \frac{308915776 \cdot 26^{114/481}}{5405625 \cdot 5^{76/481} \cdot 93^{38/481}}\approx 67.0498

The bounds of my function are now 0 (the day that the plugin was released) and 67 (the day the plugin will again be at ~81 downloads). It’s just a mater of integrating the function and subtracting out the base downloads:

\left (\int_{0}^{67}615.16x^{-0.481}  \right ) - \left (81.375\cdot67  \right ) = 5056.675

5,000 seems to be about the base number of users at this point. It will be interesting to see how this number changes over time. Especially since I have the historical data and could analyze how long it takes downloads to return to normal.

5/11/2010: Here’s the data I used: downloads.csv

0

The Magic of WP Greet Box

  • Answers

I received an email the other day wondering how I inserted the welcome message for certain guests of Andrew Ferguson dot NET.

Andrew,

Would you mind sharing what plug-in you use to do this?

image001

It’s very effective, and I’d love to use it my blog.

Thanks!

– Charles

It’s called WP Greet Box and you can get it at http://omninoggin.com/projects/wordpress-plugins/wp-greet-box-wordpress-plugin/. I just started using it recently and I think it’s pretty spiffy.

The idea is that when people come to my site by clicking on another link (from Google, Facebook, Joe’s BBQ Blog, etc), a little banner will pop up saying, “Hey! I see you came from Google (or Facebook, etc). You should subscribe to my RSS feed!”

The idea is to help gain repeat visitors.

There’s also another similar plugin called Referrer Detector that does basically the same thing. I tried both of them out and I like WP Greet Box better.

0