|
|
(12 intermediate revisions by 3 users not shown) |
Line 1: |
Line 1: |
− | <languages/> | + | __NOTOC__ |
− | <indicator name="stats"></indicator> | + | <languages/><indicator name="stats"></indicator>{{#SUBTITLE: Alfa-eldono de la Lingva Libro estis anoncita en aŭgusto 2018. Ĝis aprilo 2019 la ''LiLi'' atingis '''100 000''' sonregistraĵojn en 46 lingvoj danke al 128 malsamaj parolantoj, '''200 000''' registraĵojn (82 lingvojn, 268 parolantojn) en januaro 2020; '''500 000''' registraĵojn (120 lingvojn, 538 parolantojn) en junio 2021 kaj '''1 000 000''' registraĵojn (200 lingvojn, 1400 parolantojn) en oktobro 2023.}}{{LinguaLibre:Stats/Menu}} |
− | {{#SUBTITLE: | |
− |
| |
− | Alfa-eldono de la Lingva libro estis anoncita en aŭgusto 2018. Ĝis aprilo 2019 la ''Lingvalibro'' atingis '''100 000''' sonregistraĵojn en 46 lingvoj danke al 128 malsamaj parolantoj. La projekto atingis '''200 000''' registraĵojn (82 lingvojn, 268 parolantojn) en januaro 2020, '''300 000''' registraĵojn (91 lingvojn, 357 parolantojn) en septembro 2020 kaj '''400 000''' registraĵojn (107 lingvojn, 481 parolantojn) en februaro 2021. | |
− | }} | |
− | | |
| == Globala statistiko == | | == Globala statistiko == |
− | <query records="Records" speakers="Parolantoj" languages="Lingvoj"> | + | <query records="Registraĵoj" speakers="Parolantoj" languages="Lingvoj"> |
− | 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>
| |
− | == Dummonata aktiveco ==
| |
− | | |
− | <query yearmonth="Dato" records="Novaj registraĵoj" speakers="Aktivaj parolantoj" languages="Aktivaj lingvoj">
| |
| SELECT | | SELECT |
− | ?yearmonth
| |
| (COUNT(DISTINCT ?record) AS ?records) | | (COUNT(DISTINCT ?record) AS ?records) |
| (COUNT(DISTINCT ?speaker) AS ?speakers) | | (COUNT(DISTINCT ?speaker) AS ?speakers) |
− | (COUNT(DISTINCT ?language) AS ?languages) | + | (COUNT(DISTINCT ?language) -2 AS ?languages) # Accounting for the 2 duplicata languages |
| + | # see Help:SPARQL_for_maintenance#.E2.9C.85_Languages_.E2.86.92_list_of_values_used_including_redirects |
| WHERE { | | WHERE { |
| ?record prop:P2 entity:Q2 . | | ?record prop:P2 entity:Q2 . |
− | ?record prop:P6 ?date .
| |
| ?record prop:P5 ?speaker . | | ?record prop:P5 ?speaker . |
| ?record prop:P4 ?language . | | ?record prop:P4 ?language . |
− | BIND( SUBSTR(str(?date), 0, 8) as ?yearmonth )
| |
| } | | } |
− | GROUP BY ?yearmonth
| |
− | ORDER BY ?yearmonth
| |
| </query> | | </query> |
− | == Nombro da registraĵoj po lingvoj ==
| |
− |
| |
− | <query _pagination="10" language="Item (Language Qid)" code="ISO 639-3 kodo" nb="Number of records">
| |
− | 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) = "eo"). }
| |
− | }
| |
− | GROUP BY ?language ?languageLabel ?code
| |
− | ORDER BY DESC(?nb)
| |
− | </query>
| |
− |
| |
− | == La plej viglaj parolantoj ==
| |
− |
| |
− | <query _pagination="10" locutor="Item (locutor Qid)" locutorLabel="Parolanto" nb="Number of records">
| |
− | SELECT ?locutor ?locutorLabel ?nb WHERE {
| |
− | {
| |
− | SELECT ?locutor (COUNT(?record) as ?nb)
| |
− | WHERE {
| |
− | ?record prop:P2 entity:Q2 . # Q2: record, P2: instance of.
| |
− | ?record prop:P5 ?locutor . # Property:P5: speaker
| |
− | }
| |
− | GROUP BY ?locutor ?locutorLabel
| |
− | ORDER BY DESC(?nb)
| |
− | LIMIT 50
| |
− | }
| |
− | SERVICE wikibase:label {
| |
− | bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" .
| |
− | ?locutor rdfs:label ?locutorLabel .
| |
− | }
| |
− | }
| |
− | ORDER BY DESC(?nb)
| |
− | </query>
| |
− |
| |
− | == The most prolific speakers for the current month ==
| |
− |
| |
− | <query _pagination="10" locutor="Item (locutor Qid)" locutorLabel="Parolanto" nb="Number of records for the current month">
| |
− | SELECT ?locutor ?locutorLabel ?nb WHERE {
| |
− | {
| |
− | SELECT ?locutor (COUNT(?record) as ?nb)
| |
− | WHERE {
| |
− | ?record prop:P2 entity:Q2 . # Q2: record, P2: instance of.
| |
− | ?record prop:P5 ?locutor . # Property:P5: speaker
| |
− | ?record prop:P6 ?date .
| |
− | FILTER ( YEAR(?date) = YEAR(NOW()) && MONTH(?date) = MONTH(NOW()) )
| |
− | }
| |
− | GROUP BY ?locutor ?locutorLabel
| |
− | ORDER BY DESC(?nb)
| |
− | LIMIT 50
| |
− | }
| |
− | SERVICE wikibase:label {
| |
− | bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" .
| |
− | ?locutor rdfs:label ?locutorLabel .
| |
− | }
| |
− | }
| |
− | ORDER BY DESC(?nb)
| |
− | </query>
| |
− |
| |
− | __NOTOC__
| |