Tagged Questions
The n3 tag has no wiki summary.
5
votes
3answers
140 views
N3 notation to RDF/XML
I have to sample N3 and I need to convert it to the corresponds RDF/XML format please , any help ?
crop:AttributeValue a rdfs:Class .
crop:SomeValue a rdfs:Class; rdfs:subClassOf ...
2
votes
1answer
38 views
SPARQL Querying Transitive
I am a beginner to SPARQL and was wondering if there was a query which could help me return transitive relations. For example the n3 file below I would want a query that would return "a is the sameas ...
1
vote
0answers
29 views
how can i save my n3 file formate like it's origin file
i programing with c# and dotnetrdflibrery'I have an n3 file that i open it in a notpad and show it below
@prefix my: <http://www.codeproject.com/KB/recipes/n3_notation#>.
my:Peter a my:person, ...
0
votes
0answers
19 views
What code of library i should use in dotnetdf library to make a method to understand one graph is a tree? [closed]
I want to insert some code to dotnetrdf library to understand that a graph is a tree.
Where should I insert the code to acheive better API?
0
votes
2answers
27 views
a question about dotnetrf library [closed]
My bsc project is about Implementation of Trust base on context.
in My project I should work with rdf standard ,first i should designing an API and this API could be add or delete nodes and triple to ...
0
votes
1answer
77 views
How can I get blankNode ID in dotnetrdf librery in C#
I create a blankNode like this code using dotNetRDF
BlankNode ddd = k.CreateBlankNode();
and then assert it in a n3 file but when I open the n3 file by notpad it show this blankNode like [].
How ...
0
votes
1answer
43 views
delete a node or triple using dotenetrdf librery?
I have an n3 file formate and i want to delete a node or triple from it how can i do it? should i use sparql query?please help me
i want to have an n3 file and want to delete a node from it.
i pass a ...
-1
votes
1answer
50 views
How can I use GraphVizWriter in dotNetRDF library?
I want to know what syntax should I write to use GraphVizWriter to show my graph in a png format ?
I use dotNetRDF library.
private void button1_Click(object sender, EventArgs e)
{
...