I have a set of temporary data that I want to convert to RDF format. Is there an acceptable way to do this?
An example of tabular data that must somehow be converted to the RDF format:
| Name | Date | Salary | ----------------------------------- | John | Jan 2012 | 3,244 | | John | Feb 2012 | 4,012 | | John | Mar 2012 | 3,112 |
I found one way to do this, however it is quite cube-shaped and presents very large dictionaries. Assuming syntax (Subject, Predicate, Object)
(JohnJan2012, date, Jan 2012) (JohnJan2012, name, John) (JohnJan2012, salary, 3244)
Does anyone know how best to do this?
source share