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
      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...
      Today, 07:48 AM
    • seqadmin
      Essential Discoveries and Tools in Epitranscriptomics
      by seqadmin




      The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
      04-22-2024, 07:01 AM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by seqadmin, Today, 07:17 AM
    0 responses
    7 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-02-2024, 08:06 AM
    0 responses
    19 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-30-2024, 12:17 PM
    0 responses
    20 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-29-2024, 10:49 AM
    0 responses
    28 views
    0 likes
    Last Post seqadmin  
    Working...
    X