Writing Transformations
Overview
Teaching: 5 min
Exercises: 10 minQuestions
Where do I write GREL expressions in the OpenRefine interface?
How do I write a valid GREL expression?
Objectives
Explain how to write one’s own transformations using GREL
Writing transformations
To start writing transformations, select the column on which you wish to perform a transformation and choose Edit cells->Transform…
. In the screen that displays you have a place to write a transformation (the ‘Expression’ box) and then the ability to Preview the effect the transformation would have on 10 rows of your data.
The transformation you type into the ‘Expression’ box has to be a valid GREL expression. The simplest expression is simply the word ‘value’ by itself - which simply means the value that is currently in the column - that is: make no change.
GREL functions are written by giving a value of some kind (a text string, a date, a number etc.) to a GREL function. Some GREL functions take additional parameters or options which control how the function works. GREL supports two types of syntax:
value.function(options)
function(value, options)
Either is valid, and which is used is completely down to personal preference. In these notes the first syntax is used.
Next to the ‘Preview’ option are options to view:
- ‘History’ - a list of transformations you’ve previously used with the option to reuse them immediately or to ‘star’ them for easy access
- ‘Starred’ - a list of transformations you’ve ‘starred’ via the ‘History’ view
- ‘Help’ - a list of all the GREL functions and brief information on how to use them
Put titles into Title Case
Use Facets and the GREL expression
value.toTitlecase()
to put the titles in Title Case
- Facet by publisher
- Select “AKSHANTALA ENTERPRISES” and “SOCIETY OF PHARMACEUTICAL TECHNOCRATS”
- To select multiple values in the facet use the
include
link that appears to the right of the facet- See that the Titles for these are all in uppercase
- Click the dropdown menu on the Title column
- Choose
Edit cells->Transform...
- In the Expression box type
value.toTitlecase()
- In the review note that you can see what the affect of running this will be
- Click
OK
Key Points
You can alter data in OpenRefine based on specific instructions
You can preview the results of your GREL expression