Anonymous

NeoVoc: Difference between revisions

From eneoli wikibase
207 bytes removed ,  4 months ago
Tag: Reverted
Line 63: Line 63:
} group by ?language ?equivalents order by desc(?equivalents)
} group by ?language ?equivalents order by desc(?equivalents)
</sparql>
</sparql>
The following query shows the coverage of concept entries with equivalents in different languages, but counting only those that have been validated (i.e., where there remains no warning qualifier attached to them).
<sparql tryit="1">
#title:Number of equivalents present in NeoVoc concept entries (validated equivalents only)
#title:Number of equivalents present in NeoVoc concept entries (validated equivalents only)
#defaultView:BarChart
#defaultView:BarChart
Line 78: Line 76:
where {
where {
   ?concept endp:P5 enwb:Q12. # instances of "NeoVoc Concept"
   ?concept endp:P5 enwb:Q12. # instances of "NeoVoc Concept"
   ?concept enp:P57 ?equiv_st. filter not exists {?equiv_st enpq:P58 ?warning.}
   ?concept enp:P57 ?equiv_st. ?equiv_st enps:P57 ?equiv. filter not exists {?equiv_st enpq:P58 ?warning.}
   bind (lang(?equiv) as ?language)
   bind (lang(?equiv) as ?language)
} group by ?language ?equivalents order by desc(?equivalents)
} group by ?language ?equivalents order by desc(?equivalents)
</sparql>
</sparql>