Dear community, 

The french chapter is testing a new type of data with DBpedia, that contain 
data from historic dump files in addition to the data from fr.dbpedia.org. 


I invite you to test it. Please contact me if you encounter a problem. 
http://dbpedia-test-fr.inria.fr/historique/sparql 
You can find in attachment, an example of the used structure. 
You can find for each entity : 
- The number of revision 
- The number of contributor 
- The number of revison per month and per year 
- The average size of the article per month and per year 
- The date of creation 
- Also includes information for each revision of the article: 
- The relative size ( number of letter since the last revision ) ( makes it 
easy to detect deletions ) 
- The size ( number of letter ) 
- The nickname (or IP ) of the contributor. ( and if the contributor is a bot 
or not) 
- The modification date 
- And the commentary of the contributor 
I give you also two example request : 
It find the most modified article during october 2015 (with the number of 
revisions) : 
prefix swp: < http://www.w3.org/2004/03/trix/swp-2/ > 
prefix dbfr: < http://ns.inria.fr/dbpediafr/voc# > 
prefix dc: < http://contextus.net/ontology/ontomedia/misc/date# > 
select ?x ?c where { 
?x dbfr:revPerMonth [ dc: date "10/2015"^^< 
http://www.w3.org/2001/XMLSchema#gYearMonth >; rdf:value ?c ] . 
FILTER(!regex (str(?x),"Wikipédia:") && !regex (str(?x),"Utilisateur:") && 
!regex (str(?x),"Portail:") && !regex (str(?x),"Catégorie:") && !regex 
(str(?x),"Discussion_") && !regex (str(?x),"Modèle:") && !regex 
(str(?x),"Projet:") ) 
} 
ORDER BY DESC(?c) 
LIMIT 100 

Test it 

It find the most modified article from the begining (with the number of 
revisions) : 

prefix swp: < http://www.w3.org/2004/03/trix/swp-2/ > 
select ?x ?c where { 
?x swp:isVersion ?c . 
FILTER(?c > 2000 && !regex (str(?x),"Utilisateur:") && !regex 
(str(?x),"Portail:") && !regex (str(?x),"Catégorie:") && !regex 
(str(?x),"Discussion_") && !regex (str(?x),"Modèle:") && !regex 
(str(?x),"Projet:") ) 
} 
ORDER BY DESC(?c) 
LIMIT 200 

Test it 
With regards 
Raphaël Boyer 
WIMMICS Team 
INRIA 
France 

Attachment: ExampleStructureHistoric.ttl.gz
Description: GNU Zip compressed data

------------------------------------------------------------------------------
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=267308311&iu=/4140
_______________________________________________
Dbpedia-developers mailing list
Dbpedia-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dbpedia-developers

Reply via email to