LinguaLibre
LinguaLibre:Statistiken
Revision as of 21:40, 10 October 2020 by WikiLucas00 (talk | contribs)
Die Alpha-Version von LinguaLibre Alpha wurde im August 2018 bekannt gegeben. Bis zum 1.
August 2018 : 10,000 Audiodateien. April 2019 (8 Monate), wurden fast 100,000 Audiodateien in 46 Sprachen, Dank 128 verschiedenen aktiven Sprechern aufgenommen. January 2020 (18 Monate), wurden fast 200,000+ Audiodateien in 82 Sprachen, Dank 268 verschiedenen aktiven Sprechern aufgenommen.
Revision as of 21:40, 10 October 2020 by WikiLucas00 (talk | contribs)
Globale Statistiken
SELECT (COUNT(DISTINCT ?record) AS ?records) (COUNT(DISTINCT ?speaker) AS ?speakers) (COUNT(DISTINCT ?language) AS ?languages) WHERE {
?record prop:P2 entity:Q2 . ?record prop:P5 ?speaker . ?record prop:P4 ?language .
} </query>
Monatliche Aktivität
SELECT ?yearmonth (COUNT(DISTINCT ?record) AS ?records) (COUNT(DISTINCT ?speaker) AS ?speakers) (COUNT(DISTINCT ?language) AS ?languages) WHERE {
?record prop:P2 entity:Q2 . ?record prop:P6 ?date . ?record prop:P5 ?speaker . ?record prop:P4 ?language . BIND( SUBSTR(str(?date), 0, 8) as ?yearmonth )
} GROUP BY ?yearmonth ORDER BY ?yearmonth </query>
Anzahl Aufnahmen pro Sprache
select ?language ?languageLabel ?code (COUNT(DISTINCT ?record) as ?nb) where {
?record prop:P2 entity:Q2 . ?record prop:P4 ?language . OPTIONAL { ?language prop:P13 ?code } OPTIONAL { ?language rdfs:label ?languageLabel . FILTER (lang(?languageLabel) = "fr"). }
} GROUP BY ?language ?languageLabel ?code ORDER BY DESC(?nb) </query>
Aktivste Sprecher
select ?locutor ?locutorLabel (COUNT(?record) as ?nb) where { ?record prop:P2 entity:Q2 . ?record prop:P5 ?locutor . ?record prop:P4 ?lang . #extra:{"type": "wikibase-item", "filter":"Q4", "label": "P4", "multiple": true} ?record prop:P4 entity:[EXTRA] . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" . ?locutor rdfs:label ?locutorLabel . } } GROUP BY ?locutor ?locutorLabel ORDER BY DESC(?nb) LIMIT 50
</query>