Announcement

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

  • Statalist activity level (dataset included)

    One of our distributors was asking recently about the activity level of Stata users in online discussion areas. I put the following dataset together for them with counts of posts on the old Statalist email list and the new Statalist forum through the end of April 2015. I thought Statalist members might find it interesting.

    Code:
    . describe using statalist_post_counts.dta
    
    Contains data                                
      obs:         4,713                          6 May 2015 12:35
     vars:             4                          
     size:        94,260                          
    --------------------------------------------------------------------------------
                  storage   display    value
    variable name   type    format     label      variable label
    --------------------------------------------------------------------------------
    date            long    %td                  
    newcount        long    %12.0g                Daily post counts on statalist.org
    oldcount        long    %12.0g                Daily post counts on former
                                                    Statalist listserver
    week            long    %12.0g                
    --------------------------------------------------------------------------------
    Sorted by:
    One thing to note is that the 27jul2003 value of oldcount, 223, does not accurately reflect the list activity value on that date. Someone had a vacation autoresponder set up in their email program which resulted in a flood of looping messages to the list that day.

    I might need to be reminded, but I'll try to post this dataset at least quarterly.

    Attached Files

  • #2
    (can anyone saveold it?)

    Comment


    • #3
      Originally posted by Sergio Correia View Post
      (can anyone saveold it?)

      Here it is in Stata 13 format.
      Attached Files

      Comment


      • #4
        Code:
        gen month = mofd(date)
        format month %tm
        collapse (sum) newcount oldcount, by(month)
        graph twoway (line oldcount month if oldcount>0) (line newcount month if newcount>0)
        graph export statalist.png, width(500)
        Click image for larger version

Name:	statalist.png
Views:	1
Size:	14.1 KB
ID:	1293460

        Comment


        • #5
          Have been there new data since April 2015?

          Comment


          • #6
            I am also interested in what Chen is asking: Do we have an updated version of the Statalist counts?

            Comment

            Working...
            X