I'm becoming increasingly interested in the growing field of data journalism - basically finding, interpreting and visualising large quantities of data in order to explain or tell a story. This Guardian piece gives a good outline of what it entails, and very briefly skims over some of the "technical" skills it requires (MySQL, Python, spreadsheets).

Assuming general computer literacy and a basic understanding of programming, what programming skills or tools would a budding data journalist be advised to learn?

(I'm neither a journalist nor a real software developer, just a geek interested in hearing from people who know better!)

link|improve this question
This sounds a lot of what Microsoft would refer to as Business Intelligence. If this is correct, I would say you should get very familiar with SQL and OLAP. – Randy Minder Nov 24 '10 at 20:46
You might want to try this question at programmers.stackexchange.com instead. – Joe Stefanelli Nov 24 '10 at 20:46
feedback

closed as not constructive by casperOne Jan 29 at 2:25

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

5 Answers

up vote 1 down vote accepted

It depends very much where and how you get your data. Recently, for example, the UK (and other governments) released large amounts of data. The current format is RDF and that is likely to increase (the Obama gov has also put a lot of effort in). So in our case it's web scraping, REST, scripting, lightweight glueware, presentation graphics etc.

In the UK the Guardian newspaper (e.g. http://www.guardian.co.uk/world-government-data, http://www.guardian.co.uk/open-platform/what-is-the-open-platform ) and the BBC are among the leaders. I'd see what they do and see what is necessary to consume it.

link|improve this answer
Yes, choose good models (and analyze why they're "good"). Another one I like is cbs.nl. – Denis Dec 1 '10 at 14:34
feedback

Read up on "Data Profiling" for more information.

Also, you'll be happiest looking at some of the "Functional Programming" aspects of Python. Loading large (or complex) datasets into large structures isn't quite as efficient as writing a series of generator functions that can summarize the data without putting all of it into memory.

You'll also want to read up on Extract-Transform-Load (ETL) processing.

Finally, you really want to read up on data warehousing, since the Star Schema can make analysis of complex dataset more tractable. The dataset doesn't have to be large for a star schema to pay dividends on allowing you to "slice and dice" the data without getting brain cramps.

link|improve this answer
feedback

I think a key omission from the discussion so far is the ability to replicate results. I have increasingly little trust in results that aren't independently replicated, but tremendous faith in results that come from public data and transparent processes.

This has, I think, two implications for your selection of tools. First of all, to the extent possible, they should be programmatic - no manually changing values in Excel or making plots by hand in some webservice that will go out of business three weeks later. Start with the original data and show, start to finish, how you arrived at your results.

Secondly, your tools should be free (ideally, both open-source and cost-free). This maximizes the ability of anyone to review your work, not just those with the financial resources to do so.

The aforementioned Python and SQL are obviously good languages to know for this; Python has plenty of data-wrangling abilities and lots of libraries to do about whatever you'd need; SQL is basically the lingua franca of data, and will be useful to you in any number of (free and commercial) data applications.

I'd also recommend R. R is an open-source, free, domain-specific language for statistics (which, ahem, is what "data journalism" turns into when it's not in a newspaper). It's built around all of these concepts: data acquisition, cleaning, manipulation, plotting, analysis, and reproducibility. It has packages for nearly anything you'd like: plotting, data manipulation, time series, mapping, database interfaces... It rocks, and its StackOverflow community is quite good.

Check out this analysis of the Wikileaks Iraq logs by Mike Dewar for a short and nigh-perfect example of mingling Python and R to create interesting and reproducible analysis.

link|improve this answer
feedback

I second for using R and Python. I'd like to recommend you to read syllabus of Stanford course Paradigms for computing with data. It covers typical stages of work with data: dealing with different sources, cleaning, aggregation, processing and presentation.

There are also many interesting real cases in Beautiful Data and Beautiful Visualization.

link|improve this answer
Thanks for the heads up on the Stanford course, looks particularly useful. – Jonathan Deamer Dec 4 '10 at 21:20
Actually I think it is even available online @scpd.stanford.edu. But unfortunately not for free. – zzr Dec 4 '10 at 23:27
feedback

Python in conjunction with Django is very popular in organizations like the Washington Post, Discovery Channel, and PBS on the East Coast. You should also spend time getting to know JavaScript. Databases are no doubt going to be your best friend. To that end you should get to know as much as you can about MySQL, NoSQL, and potentially MongoDB too. R may also be helpful. Check out the Sunlight Foundation and the various Apps for America type contests going on around the country as well.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.