Wikidata:WikiProject Virtual Twins

From Wikidata
Jump to navigation Jump to search


Purpose

[edit]

This project aims to improve items about Virtual Twins.

Virtual Twins, as seen by this project, are people who were born and died on the same day.

Actual twins are not in scope of this project.

Note: A similar list can be found here: Wikidata:Database_reports/identical_birth_and_death_dates

Numbers

[edit]
Total
3295
End of automatically generated list.


# Property Count (%) todo list
style='text-align:right' different from (P1889) 3299 100 0 ✓ Done
style='text-align:right' instance of (P31) 3299 100 0 ✓ Done
style='text-align:right' date of birth (P569) 3297 100 2 ✓ Done
style='text-align:right' date of death (P570) 3295 100 4 ✓ Done
style='text-align:right' sex or gender (P21) 3257 99 42 without
style='text-align:right' given name (P735) 2753 83 546 without
style='text-align:right' occupation (P106) 2621 79 678 without
style='text-align:right' country of citizenship (P27) 2451 74 848 without
style='text-align:right' place of birth (P19) 2388 72 911 without
style='text-align:right' family name (P734) 2016 61 1283 without
style='text-align:right' place of death (P20) 1972 60 1327 without
style='text-align:right' languages spoken, written or signed (P1412) 1597 48 1702 without
style='text-align:right' VIAF ID (P214) 1477 45 1822 without
style='text-align:right' Freebase ID (P646) 913 28 2386 without
style='text-align:right' name in native language (P1559) 887 27 2412 without
style='text-align:right' educated at (P69) 877 27 2422 without
style='text-align:right' image (P18) 740 22 2559 without
style='text-align:right' award received (P166) 714 22 2585 without
style='text-align:right' Prabook ID (P3368) 641 19 2658 without
style='text-align:right' Commons category (P373) 607 18 2692 without
style='text-align:right' place of burial (P119) 449 14 2850 without
style='text-align:right' position held (P39) 439 13 2860 without
style='text-align:right' employer (P108) 431 13 2868 without
style='text-align:right' described by source (P1343) 405 12 2894 without
style='text-align:right' member of political party (P102) 367 11 2932 without
style='text-align:right' father (P22) 364 11 2935 without
style='text-align:right' Deutsche Biographie (GND) ID (P7902) 335 10 2964 without
style='text-align:right' sport (P641) 333 10 2966 without
style='text-align:right' spouse (P26) 328 10 2971 without
style='text-align:right' child (P40) 305 9 2994 without
style='text-align:right' member of (P463) 266 8 3033 without
style='text-align:right' field of work (P101) 264 8 3035 without
style='text-align:right' Find a Grave memorial ID (P535) 261 8 3038 without
style='text-align:right' copyright status as a creator (P7763) 261 8 3038 without
style='text-align:right' mother (P25) 247 7 3052 without
style='text-align:right' DDB person (GND) ID (P13049) 245 7 3054 without
style='text-align:right' conflict (P607) 234 7 3065 without
style='text-align:right' work location (P937) 232 7 3067 without
style='text-align:right' birth name (P1477) 219 7 3080 without
style='text-align:right' cause of death (P509) 207 6 3092 without
style='text-align:right' native language (P103) 190 6 3109 without
style='text-align:right' manner of death (P1196) 179 5 3120 without
style='text-align:right' member of sports team (P54) 177 5 3122 without
style='text-align:right' sibling (P3373) 174 5 3125 without
style='text-align:right' significant event (P793) 173 5 3126 without
style='text-align:right' military branch (P241) 161 5 3138 without
style='text-align:right' military or police rank (P410) 154 5 3145 without
End of automatically generated list.

Sample queries

[edit]

Virtual twins educated at the same institution

[edit]

The following query uses these:

  • Properties: different from (P1889)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID, educated at (P69)  View with Reasonator View with SQID, date of birth (P569)  View with Reasonator View with SQID, date of death (P570)  View with Reasonator View with SQID, criterion used (P1013)  View with Reasonator View with SQID
    SELECT DISTINCT ?school ?schoolLabel ?item ?itemLabel ?item1 ?item1Label ?dob ?dod
    { ?item wdt:P1889 ?item1 ; wdt:P31 wd:Q5 ; p:P1889/pq:P1013 wd:Q20978290 ; wdt:P69 ?school ; wdt:P569 ?dob ; wdt:P570 ?dod . 
      ?item1 wdt:P1889 ?item; wdt:P31 wd:Q5 ; p:P1889/pq:P1013 wd:Q20978290 ; wdt:P69 ?school ; wdt:P569 ?dob ; wdt:P570 ?dod . 
     FILTER (?item != ?item1)
     FILTER NOT EXISTS { ?item wdt:P31 wd:Q159979 } 
     SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    } 
    ORDER BY DESC(?dob)
    LIMIT 4000
    

Number of virtual twins at a given milestone

[edit]
# by Jura1, 2021-11-04
#title:Number of virtual twins (pair with the same dates of birth and death) in Wikidata at a given milestone, from [[d:Wikidata:WikiProject Virtual Twins]]
#defaultView:AreaChart
SELECT ?date ?cumulativecount 
{
    hint:Query hint:optimizer "None".
    {   SELECT ?milestonep (COUNT(?item) as ?cumulativecount)
        WHERE
        {
          { SELECT ?item { {
  	?item p:P1889 [ pq:P1013 wd:Q20978290 ; ps:P1889 ?item2 ]
    FILTER( xsd:integer(strafter(str(?item),"Q")) >  xsd:integer(strafter(str(?item2),"Q"))  )         
  } }   }
          BIND( xsd:integer( substr(str(?item), 33)) as ?qid)
          wd:Q38074555 p:P1114 ?milestonep .
          ?milestonep ps:P1114 ?milestone .
          FILTER( ?milestone > ?qid ) 
        }
        GROUP BY ?milestonep
    }          
    ?milestonep pq:P585 ?date
}
Number of virtual twins (pair with the same dates of birth and death) in Wikidata at a given milestone, from d:Wikidata:WikiProject Virtual Twins

Participants

[edit]
[+] Add yourself to the list

The participants listed below can be notified using the following template in discussions:
{{Ping project|Virtual Twins}}

List

[edit]

User:Jura1/virtual twins

Subpages

[edit]

See also

[edit]