Wikidata:WikiProject Names/lists

From Wikidata
Jump to navigation Jump to search

Home

 

Maintenance reports

 

Reference lists

 

Reference lists[edit]

Some lists generated based on data in scope of WikiProject Names

General[edit]

All given names[edit]

Given names by soundex[edit]

People by family name (samples)[edit]

Queries[edit]

Birthplaces of people named "Antoine"[edit]

See Wikidata:SPARQL query service/queries/examples#Birthplaces_of_people_named_Antoine

Popular surnames among humans[edit]

See Wikidata:SPARQL query service/queries/examples#Popular_surnames_among_humans

Most frequent given names[edit]

A ten-persons “surname = given name” chain on Wikidata[edit]

See Wikidata:Status_updates/2017 05 01#Did you know?

Number of persons by QID using P735[edit]

#defaultView:LineChart
# number of persons per QID (using P735=Q4925477)
# by Jura1, 2017-08-27
SELECT ?n (COUNT(?item)*72 as ?ct)
{
    ?item wdt:P735 wd:Q4925477 ; wdt:P31 wd:Q5 .
    BIND(ROUND(xsd:integer(strafter(str(?item),"y/Q"))/1000000) as ?n)
}
GROUP BY ?n

Try it!

Based on
#Number of persons
SELECT (COUNT(DISTINCT ?item) as ?ct) { ?item wdt:P31 wd:Q5 }
Try it!
#Number of persons with P735=Q4925477
SELECT (COUNT(DISTINCT ?item) as ?ct) { ?item wdt:P735 wd:Q4925477 ; wdt:P31 wd:Q5 }
Try it!