Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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()

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

    Comment

    Latest Articles

    Collapse

    • seqadmin
      Latest Developments in Precision Medicine
      by seqadmin



      Technological advances have led to drastic improvements in the field of precision medicine, enabling more personalized approaches to treatment. This article explores four leading groups that are overcoming many of the challenges of genomic profiling and precision medicine through their innovative platforms and technologies.

      Somatic Genomics
      “We have such a tremendous amount of genetic diversity that exists within each of us, and not just between us as individuals,”...
      05-24-2024, 01:16 PM
    • seqadmin
      Recent Advances in Sequencing Analysis Tools
      by seqadmin


      The sequencing world is rapidly changing due to declining costs, enhanced accuracies, and the advent of newer, cutting-edge instruments. Equally important to these developments are improvements in sequencing analysis, a process that converts vast amounts of raw data into a comprehensible and meaningful form. This complex task requires expertise and the right analysis tools. In this article, we highlight the progress and innovation in sequencing analysis by reviewing several of the...
      05-06-2024, 07:48 AM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by seqadmin, 06-03-2024, 06:55 AM
    0 responses
    12 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-30-2024, 03:16 PM
    0 responses
    24 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-29-2024, 01:32 PM
    0 responses
    29 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-24-2024, 07:15 AM
    0 responses
    215 views
    0 likes
    Last Post seqadmin  
    Working...
    X