krepolisma

Emily

How do we Extract Data to create a graph about Emily Dickinson

In this section is presented how we extracted knowledge for creating an Emily Dickinson Xmind graph.

With SPARQL langugage we extracted information mainily about Emily Dickinson and her life.

We queried information from DBpedia (Virtuoso SPARQL Query Editor) and Wikidata

(using Wikidata Query)

    This is the final graph about Emily Dickinson:

    These are the queries used to create the graph

    NL Query SPARQL Query Answer
    Emily Dickinson's DBpedia Page select distinct ?emily

    WHERE {
    ?emily a dbo:Person.
    ?emily foaf:gender "female"@en

    FILTER regex(?emily, "dickinson", "i")

    }

    LIMIT 100
    Result Table
    all the female poets born in 1800
    (dbpedia)
    select distinct ?x

    WHERE {
    ?x a dbo:Person .
    ?x dbo:occupation dbr:Poet.
    ?x foaf:gender "female"@en .
    ?x dbo:birthDate ?date

    FILTER (?date > "1800-01-01"^^xsd:date)
    FILTER (?date < "1900-01-01"^^xsd:date)

    }

    LIMIT 1000
    Result Table
    People influenced by Emily Dickinson
    (dbpedia)
    select distinct ?y

    WHERE {
    ?y a dbo:Person .
    ?y dbo:influencedBy dbr:Emily_Dickinson

    }

    LIMIT 100
    Result Table
    People Born in Amherst (Massachussets)
    (dbpedia)
    select distinct ?x

    WHERE {
    ?x a dbo:Person .
    ?x dbo:birthPlace ?y.
    ?y dbo:isPartOf dbr:Massachusetts .
    ?x dbo:birthDate ?date

    FILTER regex(?y, "Amherst")
    FILTER (?date > "1800-01-01"^^xsd:date)
    FILTER (?date < "1900-01-01"^^xsd:date)

    }

    LIMIT 100
    Result Table
    Who are the parents of Emily Dickinson?
    (wikidata)
    SELECT ?parents ?parentsLabel

    WHERE {
    ?parents wdt:P40 wd:Q4441.

    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }

    }

    Result Table
    Who are the siblings of Emily Dickinson?
    (wikidata)
    SELECT ?sibling ?siblingLabel

    WHERE {
    ?sibling wdt:P3373 wd:Q4441.

    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }

    }

    Result Table
    What is the birth date of Emily Dickinson?
    (wikidata)
    SELECT ?birthDate

    WHERE {
    wd:Q4441 wdt:P569 ?birthDate.

    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }

    }

    Result Table
    What is the date of death of Emily Dickinson?
    (wikidata)
    SELECT ?dateOfDeath

    WHERE {
    wd:Q4441 wdt:P570 ?dateOfDeath.

    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }

    }

    Result Table
    Who has influenced Emily Dickinson?
    (wikidata)
    SELECT ?influencedBy ?influencedByLabel

    WHERE {
    wd:Q4441 wdt:P737 ?influencedBy.

    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }

    }

    Result Table
    Who are influenced by Emily Dickinson?
    (wikidata)
    SELECT ?influencedBy ?influencedByLabel

    WHERE {
    ?influenced wdt:P737 wd:Q4441.

    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }

    }

    Result Table
    Who are the persons who have "Emily Dickinson"
    as subject?
    (dbpedia)
    SELECT distinct ?Concept

    WHERE {
    ?Concept dct:subject dbc:Emily_Dickinson.
    ?Concept a dbo:Person

    }

    LIMIT 100
    Result Table