As recently I am trying to query the pagerank scores on DBpedia SPARQL endpoint. For example, the query below is the SPARQL query on DBpedia for retrieving top-10 scientists and ordered by PageRank(can be executed at [http://dbpedia.org/sparql]
PREFIX v:<http://purl.org/voc/vrank#>
SELECT ?e ?r
FROM <http://dbpedia.org>
FROM <http://people.aifb.kit.edu/ath/#DBpedia_PageRank>
WHERE {
?e rdf:type dbo:Scientist;
v:hasRank/v:rankValue ?r.
} ORDER BY DESC(?r) LIMIT 10
I used to query some nodes related to the word: Machine Learning. And I pick out some results below:
http://dbpedia.org/page/Evolutionary_algorithms
http://dbpedia.org/page/Artificial_neural_networks
http://dbpedia.org/page/Markov_models
http://dbpedia.org/page/Cluster_analysis
My first question is : How to retrieve those nodes' pagerank scores on DBpedia SPARQL endpoint? I will be glad if anyone can provide me some query examples.
My second question is : The version of the DBpedia PageRank scores included in the official DBpedia SPARQL endpoint is still 2015-04? Since I can not find out any information about the version.
Thank you very much in advance!