activity – D’Arcy Norman dot net https://darcynorman.net no more band-aids Wed, 24 Aug 2016 23:21:25 +0000 en-US hourly 1 https://darcynorman.net/wp-content/uploads/2015/04/crankforpeace3-552f33a1v1_site_icon-32x32.png activity – D’Arcy Norman dot net https://darcynorman.net 32 32 1067019 flight patterns https://darcynorman.net/2010/08/23/flight-patterns/ Mon, 23 Aug 2010 16:07:41 +0000 http://www.darcynorman.net/?p=4270 A fascinating short experimental film, showing the flight patterns of insects through long exposure photography. An interesting way to visualize activity.

]]>
4270
the twitter effect https://darcynorman.net/2010/02/26/the-twitter-effect/ https://darcynorman.net/2010/02/26/the-twitter-effect/#comments Fri, 26 Feb 2010 15:44:27 +0000 http://www.darcynorman.net/?p=3545 Continue reading "the twitter effect"]]> Rereading Alan’s post on his blog hiatus, where he takes a month off of posting on his blog to comment elsewhere, I was struck (as always) by the patterns in activity he described. I decided to take a closer peek at the activity on my own blog – I’ve been thinking a lot about discourse analysis lately, so it’s at least partially non-navel-gazing.

Here’s the graph for the first few years of life for my blog. It started out as a private, personal outboard brain, then kind of took off with a life of its own.

a pretty graph, about nothing

Interesting. This blog’s heyday was 2005-2006. A lifetime ago, in intartube years. Then twitter happened in January 2007. It would be _really_ interesting to run some latent content analysis on both posts and comments, to see if they’re different BT vs. AT. Are the activity patterns different? Is the content different? Linking patterns? etc… It’d be completely nonscientific, but fascinating nonetheless…

]]>
https://darcynorman.net/2010/02/26/the-twitter-effect/feed/ 10 3545
WPMU Post and Comment Growth https://darcynorman.net/2009/03/31/wpmu-post-and-comment-growth/ https://darcynorman.net/2009/03/31/wpmu-post-and-comment-growth/#comments Tue, 31 Mar 2009 20:05:29 +0000 http://www.darcynorman.net/?p=3009 Continue reading "WPMU Post and Comment Growth"]]> The group of WPMU rockstars at UBC’s OLT just whipped up a fantastic new plugin for administrators of a WPMU site to get a feel for the growth of the community. It generates a graph to display growth in numbers of blog posts and comments over time, and uses the Google Data Visualization API to let you interactively define data ranges to be graphed.

Here’s the growth of UCalgaryBlogs.ca graphed for the last 2 semesters:

ucalgaryblogs-posts-comments

Another fantastic job by the OLT blogging platform crew. Now, to just add users and pages, and it’ll be perfect… 😉

]]>
https://darcynorman.net/2009/03/31/wpmu-post-and-comment-growth/feed/ 4 3009
wpmu activity reports using the blog_activity plugin https://darcynorman.net/2009/03/23/wpmu-activity-reports-using-the-blog_activity-plugin/ https://darcynorman.net/2009/03/23/wpmu-activity-reports-using-the-blog_activity-plugin/#comments Mon, 23 Mar 2009 18:12:04 +0000 http://www.darcynorman.net/?p=2967 Continue reading "wpmu activity reports using the blog_activity plugin"]]> Jim Groom linked to a post by Patrick Murray-John with an interesting summary of the activity on UMWBlogs.org – and I was curious about what activity patterns are on UCalgaryBlogs.ca – so I fired up Sequel Pro and dug around in the raw data stored by the blog_activity plugin in the wp_post_activity and wp_comment_activity tables. The tables include aggregate and anonymous activity data for the last month.

There is a relatively new Reports plugin that could do much of this in an automated way, but it only supports generating activity reports for individual users or blogs, not aggregate reports.

Following is the MySQL code I ran to crunch the tables into usable data, which I then (cringingly) copied and pasted into (wincingly) MS Excel to generate tables and visuals.

Posts per Hour of Day

To get the number of posts published by hour of day, I ran this:

select distinct from_unixtime(stamp, "%H") as hour, count(*) as numberOfPosts from wp_post_activity group by hour order by hour;

postsperhourofday

Posts per Day of Week

select distinct from_unixtime(stamp, "%a") as day, count(*) as numberOfPosts from wp_post_activity group by day;

postsperdayofweek

Comments per Hour of Day

select distinct from_unixtime(stamp, "%H") as hour, count(*) as numberOfComments from wp_comment_activity group by hour order by hour;

commentsperhourofday

Comments per Day of Week

select distinct from_unixtime(stamp, "%a") as day, count(*) as numberOfComments from wp_comment_activity group by day;

commentsperdayofweek

Combining some of the data

Now that I’ve got the data out, it’s easy to combine sets to see what’s going on. Comments and Posts per Hour of Day:

combined_posts_comments_per_hour

and combined posts and comments per day of week:

combined_posts_comments_per_day

What’s it mean?

I don’t know what it means. Mostly, I just like shiny graphs with lines that loosely correspond to something. Am I going to read anything into it? Nope. But if nothing else, it’s interesting to see that activity isn’t tightly synchronized with in-class time

Now, it’s clear that we’re nowhere NEAR the activity level of UMWBlogs, nor do we have the sustained activity (we don’t have The Reverend, after all), but I was surprised and impressed that the aggregate activity was much higher in “off” hours/days than I’d have guessed. Actual activity, outside of classroom hours. Who’d have guessed?

]]>
https://darcynorman.net/2009/03/23/wpmu-activity-reports-using-the-blog_activity-plugin/feed/ 2 2967