1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

dbpediaの研究

Posted at

概要

dbpediaが難解なので、手出してみる。
xhrで、読んでみた。

クエリー

select distinct ?color_name (count(?color_name) AS ?color) where {
  {
    ?name prop-ja:wikiPageUsesTemplate template-ja:有馬記念勝ち馬.
  }
  ?name rdfs:label ?label ;
    prop-ja:色 ?color_name.
} ORDER BY DESC(?color)

結果

xml

<sparql xmlns="http://www.w3.org/2005/sparql-results#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/2001/sw/DataAccess/rf1/result2.xsd"> <head> <variable name="color_name"/> <variable name="color"/> </head> <results distinct="false" ordered="true"> <result> <binding name="color_name"><uri>http://ja.dbpedia.org/resource/鹿毛</uri></binding> <binding name="color"><literal datatype="http://www.w3.org/2001/XMLSchema#integer">27</literal></binding> </result> <result> <binding name="color_name"><uri>http://ja.dbpedia.org/resource/黒鹿毛</uri></binding> <binding name="color"><literal datatype="http://www.w3.org/2001/XMLSchema#integer">11</literal></binding> </result> <result> <binding name="color_name"><uri>http://ja.dbpedia.org/resource/栗毛</uri></binding> <binding name="color"><literal datatype="http://www.w3.org/2001/XMLSchema#integer">10</literal></binding> </result> <result> <binding name="color_name"><uri>http://ja.dbpedia.org/resource/芦毛</uri></binding> <binding name="color"><literal datatype="http://www.w3.org/2001/XMLSchema#integer">2</literal></binding> </result> <result> <binding name="color_name"><uri>http://ja.dbpedia.org/resource/青鹿毛</uri></binding> <binding name="color"><literal datatype="http://www.w3.org/2001/XMLSchema#integer">2</literal></binding> </result> <result> <binding name="color_name"><uri>http://ja.dbpedia.org/resource/青毛</uri></binding> <binding name="color"><literal datatype="http://www.w3.org/2001/XMLSchema#integer">1</literal></binding> </result> <result> <binding name="color_name"><uri>http://ja.dbpedia.org/resource/栃栗毛</uri></binding> <binding name="color"><literal datatype="http://www.w3.org/2001/XMLSchema#integer">1</literal></binding> </result> </results> </sparql>

成果物

以上。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?