Hacker News Analysis
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
I was playing around with the Hacker News database Ronnie Roller made (thanks!), so I thought I’d post some of my findings.
Activity on the Site
My first question was: how has activity on the site increased over time? I looked at number of posts, points on posts, and comments on posts.
Posts
This looks like a strong linear fit, with an increase of 292 posts every month.
Comments
For comments, adding a quadratic term proved significant, so I used a quadratic regression to fit the number of comments by month.
Points
Again, a quadratic regression was a better fit for points by month:
Points and Comments
My next question was how points and comments related. Do, say, posts with more points also have more comments?
First, I plotted the points and comments of each individual post:
There is an overall positive correlation between points and comments (as expected), and interestingly, there are quite a few high-points posts with no comments.
Let’s try cleaning up the plot, by taking the median number of comments per points level (and removing posts at the higher end, where we have little data):
We see that posts with more points do tend to have more comments. Also, variance in number of comments is indicated by size and color, so (unsurprisingly) we see that posts with more points have larger variance in their number of comments.
Quality of Posts
Another question was whether the quality of posts has degraded over time.
To estimate quality, I defined a “good” post as a post with points greater than , where is the number of points of the tenth-highest rated post in the same month. I chose the tenth-highest rated post, because it provided a fairly stable baseline (unlike choosing the highest rated post):
We see that while the overall percentage of quality posts has decreased over time:
The absolute number of quality posts has increased:
So Hacker News has probably gotten worse if you like to read every single post, but better if you only like to read the front page.
Company Trends
Also, I wanted to see how certain topics have trended over time, so I looked at how mentions of some of the big-name companies (Google, Facebook, Microsoft, Yahoo, Twitter) have changed. For each company, I plotted the percentage of posts with the company’s name in the title, and also made a smoothed plot comparing all five at the end. Note that Microsoft, Yahoo, and Google all seem to be trending slightly downward.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.