Transpose values from all rows of a certain column into one cell for a new column

Given the snippet of the following table. My idea is to create a new column called pageoverview containing all values from the column test so e.g.

BuchdeckelVorne 1 2 3 4 5

in a second step, i woul eliminate the value of test from the specific row in the new column pageoverview so that the result would be like

  1. row: 1 2 3 4 5
  2. row: BuchdeckelVorne 2 3 4 5
  3. row: BuchdeckelVorne 1 3 4 5

Any ideas whether that's possible in OpenRefine?

My first thought is that you could use the "Records" functionality in OpenRefine. To do this you'll need to have a column that has a single identifier for the work/book so that OpenRefine can group all the related rows together into a single "Record" and then you can combine all the information that's in a single column together.

Do you already have a column with such an identifier in it?

If so you should:

  • Move the column with the work identifier to be the first column in the project
  • In "Rows" view mode, in this column use Edit cells -> Blank down
  • Switch to "Records" view mode - you should see the rows grouped together with a record number

  • from the 'test' column use Edit column -> Add column based on this column. Use the GREL row.record.cells.test.value.join("|") (where test is the column name containing the page numbers). Call the column "pageoverview"

The outcome should be something like

  • Then in the pageoverview column use Edit cells -> Transform and use the GREL filter(value.split("|"),v,v!=cells.test.value).join("|")

I think this will get the outcome you want

(you can use a different character in the join() if you want them separated in a different way, although using a space, as in your example, could be problematic if any of the labels in test already have a space in them (e.g. front cover)

1 Like

Hi Christian,

it is possible but there are some catches:

  1. You need a column that uniquely identifies each book.
  2. The values in your column "test" already have to be in order.
  3. The values in your column "test" should be unique for each book.
  • You need criterion 1 to be able to group all elements that belong to a book together.
  • You need criterion 2 to be able to write all the elements that belong to a book into a single cell.
  • You need criterion 3 to avoid removing the wrong element. (e.g. Cover 1 2 3 Cover => 1 2 3).

Under the premise that these conditions are fulfilled you can either use the concept of Records in OpenRefine to group all the elements of a book together into one record and then use the concept of multi-valued cells in OpenRefine to create the desired pageoverview column.

(Owen already described this while I was creating this post. It seems today I am quite the slow typer).

If you want to work more with GREL magic you could also use the cross function in OpenRefine to combine all the transformations in one step:

filter(
    row.cells["ID_COLUMN"].cross("YOUR_PROJECT", "ID_COLUMN").cells["test"].value,
    v,
    v != row.cells["test"].value
).join(" ")

So this GREL expression will use the column ID_COLUMN in the project named YOUR_PROJECT to join all the elements from your column test as a string separated by whitespace. It also filters the element that equals the value in the column test in the current row.

1 Like

thanks both for your answers, i will try out your ideas. to clarify my dataset: it is an OR project containing 650 records (with only one row). Each record represents one page of the same book.
(Aim: This project was build to upload the singe plage images to commons for a Wikisource project Category:Rechsteiner Chronik (KB AR Ms 401) - Wikimedia Commons, and the "joined" page column would be possible usable for the pageoverview parameter in the commons infobox)

Just to be clear about the terminology in OpenRefine a “record” consists of multiple rows - so I think you have (in OpenRefine terms) 1 record and 650 rows. Not the other way round as you write

if i switch between show as "rows/records" the data tab shows once "690 row" and others "690 records". so do i have now 690 rows in one record or 690 records with each one row?

OpenRefine uses the concept of records to combine several rows into one data item. Among other things this is used to represent nested data structures like JSON or XML.

To achieve this in OpenRefine the first column is used to determine which rows should be combined to a record.

Title Page
Book 1 Page 1
Book 1 Page 2
Book 2 Page 1

Assuming the column Title is the first column in the project. From an OpenRefine perspective you have now three rows and three records (as it is most likely the case in your project).

If we now would use the blank down functionality in OpenRefine on the column Title we have the following structure:

Title Page
Book 1 Page 1
Page 2
Book 2 Page 1

From an OpenRefine perspective we now still have three rows, but only two records (Book 1 and Book 2).

of course i know (or up to this discussion i thought i have an understanding of the difference between row and record in OR), thanks :slight_smile: to avoid further misunderstanding, my project is available here SWITCHdrive

please take a look into, and tell me if i am wrong, when i say this project has 690 records and 690 rows. (1 row per record)

But maybe that's the main problem. that for your ideas with all this row.cell... functionality i should bring my project up to the situation to have one record with 690 rows. :hugs:

thank you for all your explanation and help.

  • i have added now a new Column with the call number of the book
  • moved it to the beginning of the project
  • now i have 1 record with 690 rows.
  • and the grel command row.record.cells.test.value.join("|") brought the desired result in a new column.

:white_check_mark: :checkered_flag:

Sounds like you are trying to create web navigation breadcrumbs, perhaps? Now that you've got the record sorted out, this sketch should get you close to what you want:

  1. On column 'test', Edit Cells -> Combine Multi-Value Cells
  2. same column, Edit Cells -> Fill Down
  3. "", Edit Cells -> Transform... with the expression:
    filter(value.split('|'),page,page!=cells['Seite'].value.toString()).join(" ")

This will give you the types of strings that you mentioned in your original note.

Tom