💨
RDFストアのトリプル数を数える2: 共起頻度
概要
RDFトリプルに対して、共起頻度を数える機会がありましたので、備忘録です。以下の記事に続き、今回もジャパンサーチのRDFストアを例にします。
例1
以下は、刀剣タイプのインタンスのうち、共通を作成者(schema:creator)を持つトリプルの数をカウントしています。フィルタによって、同一のインスタンスを避け、また重複カウントを避けています。
select (count(*) as ?count) where {
?entity1 a type:刀剣;
schema:creator ?value .
?entity2 a type:刀剣;
schema:creator ?value .
FILTER(?entity1 != ?entity2 && ?entity1 < ?entity2)
}
例2
具体的なトリプルを表示してみます。
select ?entity1 ?entity2 ?value where {
?entity1 a type:刀剣;
schema:creator ?value .
?entity2 a type:刀剣;
schema:creator ?value .
FILTER(?entity1 != ?entity2 && ?entity1 < ?entity2)
}
共通の値を持つ刀剣タイプのインタンスの一覧を取得することができます。
まとめ
誤っている点もあるかもしれませんが、参考になりましたら幸いです。
Discussion