I have a bunch of product data to clean prior to entry into a database that looks like this:
COL A
COL B
COL C... "N"
Option 1
A, B, C, D
Option 1 attribute
Option 2
C, D, F
Option 2 attribute
Option 3
D, J, Z
Option 3 attribute
And…
OS: Windows 10 Pro 64 bit 19042.985
JDK: OpenJDK 16.0.1+9-24
OpenRefine: openrefine-3.4.1
Browser: Firefox 88.0.1
Just installed OpenRefine for the first time, on top of a fresh install of OpenJDK 16
The server runs and opens the URL…
First off, I'm not a developer, and I'm new to writing SPARQL queries. Mostly I've been looking up existing queries and trying to tweak them to get what I need. The issue is that most documentation on query construction have to do with getting new…
I have a csv of names like so Smith, SMITH, John, JOHN and I'm trying to use regex in OpenRefine to remove the names in all caps.
replace(value, /^[A-Z]$/, '') does nothing and replace(value, /[A-Z]/, '') gets rid of all names with any capital…
Working in OpenRefine I want to find word pairs where the second word is 'Street'.
I have a python regular expression which works for this but I can't get it to work in OpenRefine.
https://regex101.com/r/igjCuo/94 show the regex working…
So I'm trying to find a simple way to create a new column that displays the difference between two existing columns (each with numbers)... I can't seem to find the proper GREL expression....
So I'm trying to find the amount of items sold with a…
I have a column in Openrefine, which I would like to add a character string in each of its rows, based on the position in the string.
For example:
I have an 8th character number string: 85285296 and would like to add "-" at the fourth place:…
I have the following use case that OpenRefine seems to be a good candidate to solve. I have an existing, "dirty" product table in my database that looks like this:
id name
51 Product A
52 product-a
53 product B
54 productb
55 produtc
56 …
I want to use wikidata reconciliation to translate a column of terms into various languages by fetching the labels in those languages. Using SPARQL, I'd filter a query for label by language (this is the approach suggested in various similar cases).…
I was wondering if there's a way to take some values from wikidata through openrefine. For instance: I've got the wikidata ID of a painting. Inside Openrefine it is possible to create a new column with the wikidata author ID?
Thanks
GREL replace function expects 3 strings, or a string, a regex and a string.
In the 3rd string used for replacement, some characters have a special behavior : \, \, \t, \n, \', \" and maybe some other combinations.
\ does nothing, or an error
\ is…
I have following table
╔════════╦════════╦════════╦════════╗
║ record ║ Brand ║ Model ║ Spec ║
╠════════╬════════╬════════╬════════╣
║ 1 ║ X ║ null ║ 1 ║
║ ║ X ║ DF ║ 3 ║
║ ║ X ║ null ║ 5 …
I am trying to extract just the emails from text column in openrefine. some cells have just the email, but others have the name and email in john doe format. I have been using the following GREL/regex but it does not return the entire…
I have a table in OpenRefine with columns A, B, and C like this:
A | B | C | D
---|---|---|---
a | 1 | b | 2
b | 2 | |
c | 3 | a | 1
d | 4 | c | 3
I want to create a column D by fetching the values from B corresponding to those in C, using…