Reputation: 9098
How would you go about coding an interactive website to display stats/graphs. Say I wanted to create something interactive for people to look at Stackoverflow stats - something that looks like awstats / google analytics but allows you to drill down to stats/graphs like:
Is the answer "code it yourself"? I guess I could pre-crunch a lot of data and find a library to create the graphs for me.
Or is there a library/package suited to this sort of thing? I've spent some time looking at datamining applications (Splunk, SQL Server Analysis Services). But these look like interactive applications to build up queries, not something to create interactive output.
I'm not attached to any particular web tech. ASP.NET / PHP / python are all good.
Upvotes: 3
Views: 475
Reputation:
Maybe take look at http://www.kapott.org/~kleiner/interactiveStats. There is currently only a small demo page available. AFAIK there is no release until now, and the demo page still lacks some features like graphical output etc. But work is in progress, and I'm looking forward for the first release... :-)
Upvotes: 0
Reputation: 15143
Grab dump from here: https://blog.stackoverflow.com/2009/06/stack-overflow-creative-commons-data-dump/
Process into your favorite DB.
Make pretty using Google Chart API. Cool DB integration example here.
Upvotes: 1
Reputation: 48172
There are projects that attempt to integrate graph-drawing with data collection, storage and analysis (such as Cacti), but if I were doing this I'd roll my own data management code and use an external language/library/program to make pretty graphics.
If you're interested in doing that, I'd look at the following:
All of these can generate graphs for you given the data, but none of them take care of storing the data for you. If you want to see some beautiful graphics made with R, check out this web site:
Upvotes: 2