I am new to rdf and triples and I am looking for a way to load some triples in a triple store. I have a dataframe with following columns.
mesh_code skos_rel MDR_code
0 <http://id.nlm.nih.gov/mesh/D000012> <http://www.w3.org/2004/02/skos/core#exactMatch> <https://identifiers.org/meddra:10083851>
1 <http://id.nlm.nih.gov/mesh/D000026> <http://www.w3.org/2004/02/skos/core#exactMatch> <https://identifiers.org/meddra:10062935>
2 <http://id.nlm.nih.gov/mesh/D000030> <http://www.w3.org/2004/02/skos/core#exactMatch> <https://identifiers.org/meddra:10000230>
3 <http://id.nlm.nih.gov/mesh/D000038> <http://www.w3.org/2004/02/skos/core#exactMatch> <https://identifiers.org/meddra:10000269>
4 <http://id.nlm.nih.gov/mesh/D015823> <http://www.w3.org/2004/02/skos/core#exactMatch> <https://identifiers.org/meddra:10069408>
Is there a way to convert this dataframe to a turtle format, that can be loaded into a triple store like Blazegraph.
Any help is highly appreciated.