Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • ECO
    --Site Admin--
    • Oct 2007
    • 1360

    Stats on Posts/Day (or...geeking out with ggplot2)

    As I was making my previous post about the 20,000 post milestone, I was interested in the real answer for how many posts/day we have had over the life of the site.

    Unfortunately vBulletin has only very rudimentary stats built in. As in one text column of posts per day. Dropped the data into R to get some prettier representations...and it looks like we're >60/day for the last full month:



    Then I realized this included the typically slow weekends...hence the huge middle 50%...a bit of filtering later shows we're over 70/day during the week:



    Splitting the data up by day of the week shows what one might expect, Tues-Thurs are the highest activity with some drop off for Mon/Fri:



    If nothing else, I hope this post encourages you to explore the R/ggplot2 combo if you haven't already.

    Code:
    setwd('/Users/eco/Documents/WWW/SEQanswers.com/stats')
    d <- read.csv('stats.csv')
    days <- c('Sun','Mon','Tues','Weds','Thurs','Fri','Sat')
    d$realday <- days[d$weekday]
    d$realday <- factor(d$realday, levels=days)
    
    png("monthly.png",width=750,height=350) 
    qplot(factor(month),posts,data=d,colour=factor(year),geom='boxplot',ylab='Posts/Day',xlab='Month',main='SEQanswers.com Post History (all 7 days)')
    dev.off()
    
    png("monthly_weekdays.png",width=750,height=350)
    qplot(factor(month),posts,data=d[d$weekday>1 & d$weekday < 7,],colour=factor(year),geom='boxplot',ylab='Posts/Day',xlab='Month',main='SEQanswers.com Post History (Weekdays Only)')
    dev.off()
    
    png("weekdays.png",width=750,height=350)
    qplot(factor(realday),posts,data=d,colour=factor(year),geom='boxplot',ylab='Posts/Day',xlab='Weekday',main='SEQanswers.com Post History by Weekday')
    dev.off()
  • bioinfosm
    Senior Member
    • Jan 2008
    • 483

    #2
    Excellent Eco.. shows that Wed is not that sleepy after all! Not for NGS :P
    --
    bioinfosm

    Comment

    Latest Articles

    Collapse

    • SEQadmin2
      Nine Things a Sample Prep Scientist Thinks About Before Sequencing
      by SEQadmin2


      I’m not a sequencing expert. I’m a purification scientist who uses NGS to evaluate workflows my group develops. With this perspective, we think about the sample first and the NGS workflow second. The sequencer is an exceptionally honest reporter, but it can only report on what you give it, so whether you get clean, interpretable data from an NGS workflow is largely determined before you begin.

      Here are nine questions we think about, in roughly the order they matter, before...
      06-18-2026, 07:11 AM
    • SEQadmin2
      From Collection to Sequencing: Why Sample Preparation and Preservation Define Sequencing Data
      by SEQadmin2


      Data variability is still an issue in sequencing technologies despite the advances in reproducibility and accuracy of these platforms. But the problem does not originate in the sequencing itself, but in the previous steps, before the sample reaches the sequencer.


      The first step is collection, followed by preservation and sample preparation for analysis. Most scientists overlook those steps, but not being careful might just be skewing the experiment’s results.
      ...
      06-02-2026, 10:05 AM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by SEQadmin2, Today, 11:10 AM
    0 responses
    6 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 06-17-2026, 06:09 AM
    0 responses
    41 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 06-09-2026, 11:58 AM
    0 responses
    102 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 06-05-2026, 10:09 AM
    0 responses
    123 views
    0 reactions
    Last Post SEQadmin2  
    Working...