Link Search Menu Expand Document

(Lecture notes only)

Reporters often acquire data from sources that are collected in haphazard ways, or focus on fields that are filled out voluntarily. Think about all of the ways your name and address could appear on a mailing list, then add to the mix typos and errors, and you have a typical government database.

OpenRefine, an open source project that has been supported by Google in the past, was developed to help you work with data that comes in unstructured or poorly structured or standardized ways. The Open Refine site points to lots of introductory exercises.

Here are two files that are good practice for getting around OpenRefine:

Practice with OpenRefine

  • How to start it up - if the browser doesn’t open, use localhost:3333 .
  • How to load a csv directly from the Web - go over the options in the first import screen.
  • Data screen -
    • Defaults to 10 rows - Usually change to 50.
    • Show a text facet.
    • Show converting text to number, and what a numeric facet looks like.
    • Cluster options - show how to quickly see what is in the dataset, and how to change them.
    • Filter with facets.
    • Use regular expressions in filter
    • Create field based on another, then use clustering and filtering to clean it up. Example: We dont know what department they are in, but some occupations would only be in one.

Do some work on liquor licenses on your own if you’re interested.

Clean up Medicare

The file came from here: http://www.health.ny.gov/health_care/managed_care/reports/enrollment/monthly/ Put everything together into one horrible spreadsheet. Walk through how to think about it and clean it up. Walkthrough is here.

  • Record vs. row.
  • Remove UPSTATE TOTALS (I learned this the hard way - just had to go back and fix it the first time through.)
  • Show as rows, with 6636.
  • Regex : Extract month and year. NYS or NYS, or NYS JANUARY, or NYS JANUARY with no comma - use regex in filter.
  • Once you know you have them - add column based on this column.
  • Then fill down on that one.
  • Now value.match( /.*NYS, [0])

  • Now value.replace spaces and commas with one space.
  • now value.toDate(‘MMM yyyy’)
  • Show how to go backwards.

Then go through the rest of the tutorial.