User:YULdigitalpreservation/ScienceStories/Coeducation

From Wikidata
Jump to navigation Jump to search

Codeucation of men and women in the US[edit]

Return a timeline of educational institutions and when they began coeducation[edit]

Try it!

Return a timeline of Ivy League institutions plotted by the year they began coeducation[edit]

The following query uses these:

  • Properties: member of (P463)  View with Reasonator View with SQID, significant event (P793)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID, start time (P580)  View with Reasonator View with SQID
    #defaultView:Timeline
    
    SELECT ?institution ?institutionLabel ?date ?image
    
    WHERE 
    
    {
      ?institution wdt:P463 wd:Q49113.
      ?institution wdt:P793 wd:Q541394;
    
                     p:P793 [pq:P580 ?date].
    
      OPTIONAL {?institution wdt:P18 ?image.}
    
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    
    
    }
    

Filtered to before 1900[edit]

The following query uses these:

  • Properties: significant event (P793)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID, start time (P580)  View with Reasonator View with SQID
    #defaultView:Timeline
    SELECT ?institution ?institutionLabel ?date ?image
    WHERE 
    {
      ?institution wdt:P793 wd:Q541394;
                     p:P793 [pq:P580 ?date].
      OPTIONAL {?institution wdt:P18 ?image.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
      FILTER(YEAR(?date) < 1900).
    }