Difference between revisions of "Truly Tabular RDF/AcademicConferences"
Jump to navigation
Jump to search
(4 intermediate revisions by the same user not shown) | |||
Line 10: | Line 10: | ||
</source> | </source> | ||
7514 | 7514 | ||
− | == non tabular entries for academic conference/ | + | == non tabular entries for academic conference/country:frequencies == |
=== query === | === query === | ||
<source lang='sparql'> | <source lang='sparql'> | ||
+ | SELECT ?count (COUNT(?count) AS ?frequency) WHERE { | ||
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
− | # with the given | + | # with the given country(P17) https://www.wikidata.org/wiki/Property:P17 |
− | SELECT ?item (COUNT (?value) AS ?count) | + | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) |
WHERE | WHERE | ||
{ | { | ||
# instance of academic conference | # instance of academic conference | ||
?item wdt:P31 wd:Q2020153. | ?item wdt:P31 wd:Q2020153. | ||
− | # | + | ?item rdfs:label ?itemLabel. |
− | ?item wdt: | + | filter (lang(?itemLabel) = "en"). |
− | } GROUP by ?item | + | # country |
− | + | ?item wdt:P17 ?value. | |
− | ORDER BY DESC(? | + | } GROUP by ?item ?itemLabel |
+ | |||
+ | } | ||
+ | GROUP BY ?count | ||
+ | ORDER BY DESC (?frequency) | ||
</source> | </source> | ||
− | + | [https://query.wikidata.org//#SELECT%20%3Fcount%20%28COUNT%28%3Fcount%29%20AS%20%3Ffrequency%29%20WHERE%20%7B%0A%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20country%28P17%29%20https%3A//www.wikidata.org/wiki/Property%3AP17%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20country%0A%20%20%3Fitem%20wdt%3AP17%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0A%7D%0AGROUP%20BY%20%3Fcount%0AORDER%20BY%20DESC%20%28%3Ffrequency%29 try it!] | |
=== result === | === result === | ||
{| class="wikitable" style="text-align: left;" | {| class="wikitable" style="text-align: left;" | ||
|+ <!-- caption --> | |+ <!-- caption --> | ||
|- | |- | ||
− | + | ! align="right"| count !! align="right"| frequency | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
|- | |- | ||
− | | | + | | align="right"| 1 || align="right"| 7077 |
|} | |} | ||
− | == non tabular entries for academic conference/country == | + | == non tabular entries for academic conference/country:records == |
=== query === | === query === | ||
Line 79: | Line 50: | ||
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
# with the given country(P17) https://www.wikidata.org/wiki/Property:P17 | # with the given country(P17) https://www.wikidata.org/wiki/Property:P17 | ||
− | SELECT ?item (COUNT (?value) AS ?count) | + | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) |
WHERE | WHERE | ||
{ | { | ||
# instance of academic conference | # instance of academic conference | ||
?item wdt:P31 wd:Q2020153. | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
# country | # country | ||
?item wdt:P17 ?value. | ?item wdt:P17 ?value. | ||
− | } GROUP by ?item | + | } GROUP by ?item ?itemLabel |
+ | |||
HAVING (COUNT (?value) > 1) | HAVING (COUNT (?value) > 1) | ||
ORDER BY DESC(?count) | ORDER BY DESC(?count) | ||
</source> | </source> | ||
− | + | [https://query.wikidata.org//#%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20country%28P17%29%20https%3A//www.wikidata.org/wiki/Property%3AP17%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20country%0A%20%20%3Fitem%20wdt%3AP17%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0AHAVING%20%28COUNT%20%28%3Fvalue%29%20%3E%201%29%0AORDER%20BY%20DESC%28%3Fcount%29 try it!] | |
=== result === | === result === | ||
− | == non tabular entries for academic conference/ | + | == non tabular entries for academic conference/part of the series:frequencies == |
=== query === | === query === | ||
<source lang='sparql'> | <source lang='sparql'> | ||
+ | SELECT ?count (COUNT(?count) AS ?frequency) WHERE { | ||
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
− | # with the given | + | # with the given part of the series(P179) https://www.wikidata.org/wiki/Property:P179 |
− | SELECT ?item (COUNT (?value) AS ?count) | + | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) |
WHERE | WHERE | ||
{ | { | ||
# instance of academic conference | # instance of academic conference | ||
?item wdt:P31 wd:Q2020153. | ?item wdt:P31 wd:Q2020153. | ||
− | # | + | ?item rdfs:label ?itemLabel. |
− | ?item wdt: | + | filter (lang(?itemLabel) = "en"). |
− | } GROUP by ?item | + | # part of the series |
− | + | ?item wdt:P179 ?value. | |
− | ORDER BY DESC(? | + | } GROUP by ?item ?itemLabel |
+ | |||
+ | } | ||
+ | GROUP BY ?count | ||
+ | ORDER BY DESC (?frequency) | ||
</source> | </source> | ||
− | + | [https://query.wikidata.org//#SELECT%20%3Fcount%20%28COUNT%28%3Fcount%29%20AS%20%3Ffrequency%29%20WHERE%20%7B%0A%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20part%20of%20the%20series%28P179%29%20https%3A//www.wikidata.org/wiki/Property%3AP179%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20part%20of%20the%20series%0A%20%20%3Fitem%20wdt%3AP179%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0A%7D%0AGROUP%20BY%20%3Fcount%0AORDER%20BY%20DESC%20%28%3Ffrequency%29 try it!] | |
=== result === | === result === | ||
{| class="wikitable" style="text-align: left;" | {| class="wikitable" style="text-align: left;" | ||
|+ <!-- caption --> | |+ <!-- caption --> | ||
|- | |- | ||
− | ! | + | ! align="right"| count !! align="right"| frequency |
|- | |- | ||
− | | | + | | align="right"| 1 || align="right"| 7120 |
|- | |- | ||
− | | | + | | align="right"| 2 || align="right"| 15 |
|- | |- | ||
− | | | + | | align="right"| 3 || align="right"| 4 |
+ | |} | ||
+ | == non tabular entries for academic conference/part of the series:records == | ||
+ | |||
+ | === query === | ||
+ | <source lang='sparql'> | ||
+ | |||
+ | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
+ | # with the given part of the series(P179) https://www.wikidata.org/wiki/Property:P179 | ||
+ | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) | ||
+ | WHERE | ||
+ | { | ||
+ | # instance of academic conference | ||
+ | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
+ | # part of the series | ||
+ | ?item wdt:P179 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
+ | HAVING (COUNT (?value) > 1) | ||
+ | ORDER BY DESC(?count) | ||
+ | </source> | ||
+ | |||
+ | [https://query.wikidata.org//#%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20part%20of%20the%20series%28P179%29%20https%3A//www.wikidata.org/wiki/Property%3AP179%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20part%20of%20the%20series%0A%20%20%3Fitem%20wdt%3AP179%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0AHAVING%20%28COUNT%20%28%3Fvalue%29%20%3E%201%29%0AORDER%20BY%20DESC%28%3Fcount%29 try it!] | ||
+ | === result === | ||
+ | {| class="wikitable" style="text-align: left;" | ||
+ | |+ <!-- caption --> | ||
|- | |- | ||
− | + | ! item !! itemLabel !! align="right"| count | |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105978864 || International Joint Conference SOCO'13-CISIS'13-ICEUTE'13 - Salamanca, Spain, September 11th-13th, 2013 || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105979018 || Intelligent Computer Mathematics - 11th International Conference AISC, 19th Symposium Calculemus, 5th International Workshop DML, 11th International Conference MKM, Systems and Projects, Held as Part of CICM 2012, Bremen, Germany, July 8-13, 2012 || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105979324 || International Joint Conference SOCO'16-CISIS'16-ICEUTE'16 - San Sebastián, Spain, October 19th-21st, 2016 || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105983704 || International Joint Conference SOCO'18-CISIS'18-ICEUTE'18 - San Sebastián, Spain, June 6-8, 2018 || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q63430346 || 5. Solvay Conference on Physics || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48026807 || The 6th International Semantic Web Conference and the 2nd Asian Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q102352145 || ACL '98/COLING '98 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105983692 || ACM India Joint International Conference on Data Science and Management of Data, COMAD/CODS 2019, Kolkata, India, January 3-5, 2019 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105983693 || Software Engineering - ESEC/FSE'99, 7th European Software Engineering Conference, Held Jointly with the 7th ACM SIGSOFT Symposium on the Foundations of Software Engineering, Toulouse, France, September 1999 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105983696 || IBERAMIA-SBIA 2006, 2nd International Joint Conference, 10th Ibero-American Conference on AI, 18th Brazilian AI Symposium, Ribeirão Preto, Brazil, October 23-27, 2006 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105983698 || People and Computers XV - Interaction without Frontiers, Joint HCI 2001 and IHM 2001, Lille, France, September 10-14, 2001 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105983700 || TAPSOFT'95: Theory and Practice of Software Development, 6th International Joint Conference CAAP/FASE, Aarhus, Denmark, May 22-26, 1995 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105983708 || Applications of Declarative Programming and Knowledge Management - 19th International Conference, INAP 2011, and 25th Workshop on Logic Programming, WLP 2011, Vienna, Austria, September 28-30, 2011 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105983709 || Engineering Applications of Neural Networks - 12th INNS EANN-SIG International Conference, EANN 2011 and 7th IFIP WG 12.5 International Conference, AIAI 2011, Corfu, Greece, September 15-18, 2011 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105983712 || Intelligent Computer Mathematics - MKM, Calculemus, DML, and Systems and Projects 2013, Held as Part of CICM 2013, Bath, UK, July 8-12, 2013 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105983713 || Intelligent Computer Mathematics, 16th Symposium, Calculemus 2009, 8th International Conference, MKM 2009, Held as Part of CICM 2009, Grand Bend, Canada, July 6-12, 2009 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105983715 || Serious Games - Second Joint International Conference, JCSG 2016, Brisbane, QLD, Australia, September 26-27, 2016 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105983716 || Social, Cultural, and Behavioral Modeling, 9th International Conference, SBP-BRiMS 2016, Washington, DC, USA, June 28 - July 1, 2016 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105983926 || International Joint Conference - CISIS'15 and ICEUTE'15, 8th Computational Intelligence in Security for Information Systems Conference / 6th EUropean Transnational Education Conference, Burgos, Spain, 15-17 June, 2015 || align="right"| 2 |
+ | |} | ||
+ | == non tabular entries for academic conference/VIAF ID:frequencies == | ||
+ | |||
+ | === query === | ||
+ | <source lang='sparql'> | ||
+ | SELECT ?count (COUNT(?count) AS ?frequency) WHERE { | ||
+ | |||
+ | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
+ | # with the given VIAF ID(P214) https://www.wikidata.org/wiki/Property:P214 | ||
+ | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) | ||
+ | WHERE | ||
+ | { | ||
+ | # instance of academic conference | ||
+ | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
+ | # VIAF ID | ||
+ | ?item wdt:P214 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
+ | } | ||
+ | GROUP BY ?count | ||
+ | ORDER BY DESC (?frequency) | ||
+ | </source> | ||
+ | |||
+ | [https://query.wikidata.org//#SELECT%20%3Fcount%20%28COUNT%28%3Fcount%29%20AS%20%3Ffrequency%29%20WHERE%20%7B%0A%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20VIAF%20ID%28P214%29%20https%3A//www.wikidata.org/wiki/Property%3AP214%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20VIAF%20ID%0A%20%20%3Fitem%20wdt%3AP214%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0A%7D%0AGROUP%20BY%20%3Fcount%0AORDER%20BY%20DESC%20%28%3Ffrequency%29 try it!] | ||
+ | === result === | ||
+ | {| class="wikitable" style="text-align: left;" | ||
+ | |+ <!-- caption --> | ||
|- | |- | ||
− | | | + | ! align="right"| count !! align="right"| frequency |
|- | |- | ||
− | | | + | | align="right"| 1 || align="right"| 2092 |
|- | |- | ||
− | | | + | | align="right"| 2 || align="right"| 3 |
|- | |- | ||
− | + | | align="right"| 3 || align="right"| 1 | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
|} | |} | ||
− | == non tabular entries for academic conference/ | + | == non tabular entries for academic conference/VIAF ID:records == |
=== query === | === query === | ||
Line 196: | Line 215: | ||
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
− | # with the given | + | # with the given VIAF ID(P214) https://www.wikidata.org/wiki/Property:P214 |
− | SELECT ?item (COUNT (?value) AS ?count) | + | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) |
WHERE | WHERE | ||
{ | { | ||
# instance of academic conference | # instance of academic conference | ||
?item wdt:P31 wd:Q2020153. | ?item wdt:P31 wd:Q2020153. | ||
− | # | + | ?item rdfs:label ?itemLabel. |
− | ?item wdt: | + | filter (lang(?itemLabel) = "en"). |
− | } GROUP by ?item | + | # VIAF ID |
+ | ?item wdt:P214 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
HAVING (COUNT (?value) > 1) | HAVING (COUNT (?value) > 1) | ||
ORDER BY DESC(?count) | ORDER BY DESC(?count) | ||
</source> | </source> | ||
− | + | [https://query.wikidata.org//#%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20VIAF%20ID%28P214%29%20https%3A//www.wikidata.org/wiki/Property%3AP214%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20VIAF%20ID%0A%20%20%3Fitem%20wdt%3AP214%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0AHAVING%20%28COUNT%20%28%3Fvalue%29%20%3E%201%29%0AORDER%20BY%20DESC%28%3Fcount%29 try it!] | |
=== result === | === result === | ||
{| class="wikitable" style="text-align: left;" | {| class="wikitable" style="text-align: left;" | ||
|+ <!-- caption --> | |+ <!-- caption --> | ||
|- | |- | ||
− | ! item !! align="right"| count | + | ! item !! itemLabel !! align="right"| count |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105979018 || Intelligent Computer Mathematics - 11th International Conference AISC, 19th Symposium Calculemus, 5th International Workshop DML, 11th International Conference MKM, Systems and Projects, Held as Part of CICM 2012, Bremen, Germany, July 8-13, 2012 || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q97626306 || Second Postgraduate Conference in Studies of Antiquity and Middle Ages || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105983693 || Software Engineering - ESEC/FSE'99, 7th European Software Engineering Conference, Held Jointly with the 7th ACM SIGSOFT Symposium on the Foundations of Software Engineering, Toulouse, France, September 1999 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105983696 || IBERAMIA-SBIA 2006, 2nd International Joint Conference, 10th Ibero-American Conference on AI, 18th Brazilian AI Symposium, Ribeirão Preto, Brazil, October 23-27, 2006 || align="right"| 2 |
− | | | + | |} |
− | + | == non tabular entries for academic conference/GND ID:frequencies == | |
+ | |||
+ | === query === | ||
+ | <source lang='sparql'> | ||
+ | SELECT ?count (COUNT(?count) AS ?frequency) WHERE { | ||
+ | |||
+ | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
+ | # with the given GND ID(P227) https://www.wikidata.org/wiki/Property:P227 | ||
+ | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) | ||
+ | WHERE | ||
+ | { | ||
+ | # instance of academic conference | ||
+ | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
+ | # GND ID | ||
+ | ?item wdt:P227 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
+ | } | ||
+ | GROUP BY ?count | ||
+ | ORDER BY DESC (?frequency) | ||
+ | </source> | ||
+ | |||
+ | [https://query.wikidata.org//#SELECT%20%3Fcount%20%28COUNT%28%3Fcount%29%20AS%20%3Ffrequency%29%20WHERE%20%7B%0A%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20GND%20ID%28P227%29%20https%3A//www.wikidata.org/wiki/Property%3AP227%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20GND%20ID%0A%20%20%3Fitem%20wdt%3AP227%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0A%7D%0AGROUP%20BY%20%3Fcount%0AORDER%20BY%20DESC%20%28%3Ffrequency%29 try it!] | ||
+ | === result === | ||
+ | {| class="wikitable" style="text-align: left;" | ||
+ | |+ <!-- caption --> | ||
|- | |- | ||
− | | | + | ! align="right"| count !! align="right"| frequency |
|- | |- | ||
− | | | + | | align="right"| 1 || align="right"| 3043 |
|- | |- | ||
− | | | + | | align="right"| 2 || align="right"| 4 |
|- | |- | ||
− | | | + | | align="right"| 3 || align="right"| 2 |
|} | |} | ||
− | == non tabular entries for academic conference/ | + | == non tabular entries for academic conference/GND ID:records == |
=== query === | === query === | ||
Line 240: | Line 289: | ||
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
− | # with the given | + | # with the given GND ID(P227) https://www.wikidata.org/wiki/Property:P227 |
− | SELECT ?item (COUNT (?value) AS ?count) | + | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) |
WHERE | WHERE | ||
{ | { | ||
# instance of academic conference | # instance of academic conference | ||
?item wdt:P31 wd:Q2020153. | ?item wdt:P31 wd:Q2020153. | ||
− | # | + | ?item rdfs:label ?itemLabel. |
− | ?item wdt: | + | filter (lang(?itemLabel) = "en"). |
− | } GROUP by ?item | + | # GND ID |
+ | ?item wdt:P227 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
HAVING (COUNT (?value) > 1) | HAVING (COUNT (?value) > 1) | ||
ORDER BY DESC(?count) | ORDER BY DESC(?count) | ||
</source> | </source> | ||
− | + | [https://query.wikidata.org//#%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20GND%20ID%28P227%29%20https%3A//www.wikidata.org/wiki/Property%3AP227%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20GND%20ID%0A%20%20%3Fitem%20wdt%3AP227%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0AHAVING%20%28COUNT%20%28%3Fvalue%29%20%3E%201%29%0AORDER%20BY%20DESC%28%3Fcount%29 try it!] | |
=== result === | === result === | ||
{| class="wikitable" style="text-align: left;" | {| class="wikitable" style="text-align: left;" | ||
|+ <!-- caption --> | |+ <!-- caption --> | ||
|- | |- | ||
− | ! item !! align="right"| count | + | ! item !! itemLabel !! align="right"| count |
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q105979018 || Intelligent Computer Mathematics - 11th International Conference AISC, 19th Symposium Calculemus, 5th International Workshop DML, 11th International Conference MKM, Systems and Projects, Held as Part of CICM 2012, Bremen, Germany, July 8-13, 2012 || align="right"| 3 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q101208370 || International Organization for the Study of the Old Testament. Congress || align="right"| 3 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q105983693 || Software Engineering - ESEC/FSE'99, 7th European Software Engineering Conference, Held Jointly with the 7th ACM SIGSOFT Symposium on the Foundations of Software Engineering, Toulouse, France, September 1999 || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q105983696 || IBERAMIA-SBIA 2006, 2nd International Joint Conference, 10th Ibero-American Conference on AI, 18th Brazilian AI Symposium, Ribeirão Preto, Brazil, October 23-27, 2006 || align="right"| 2 | ||
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q105983926 || International Joint Conference - CISIS'15 and ICEUTE'15, 8th Computational Intelligence in Security for Information Systems Conference / 6th EUropean Transnational Education Conference, Burgos, Spain, 15-17 June, 2015 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q107177033 || NYU Symposium on Decision Support Systems || align="right"| 2 |
|} | |} | ||
− | == non tabular entries for academic conference/ | + | == non tabular entries for academic conference/location:frequencies == |
=== query === | === query === | ||
<source lang='sparql'> | <source lang='sparql'> | ||
+ | SELECT ?count (COUNT(?count) AS ?frequency) WHERE { | ||
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
− | # with the given | + | # with the given location(P276) https://www.wikidata.org/wiki/Property:P276 |
− | SELECT ?item (COUNT (?value) AS ?count) | + | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) |
WHERE | WHERE | ||
{ | { | ||
# instance of academic conference | # instance of academic conference | ||
?item wdt:P31 wd:Q2020153. | ?item wdt:P31 wd:Q2020153. | ||
− | # | + | ?item rdfs:label ?itemLabel. |
− | ?item wdt: | + | filter (lang(?itemLabel) = "en"). |
− | } GROUP by ?item | + | # location |
− | + | ?item wdt:P276 ?value. | |
− | ORDER BY DESC(? | + | } GROUP by ?item ?itemLabel |
+ | |||
+ | } | ||
+ | GROUP BY ?count | ||
+ | ORDER BY DESC (?frequency) | ||
</source> | </source> | ||
− | + | [https://query.wikidata.org//#SELECT%20%3Fcount%20%28COUNT%28%3Fcount%29%20AS%20%3Ffrequency%29%20WHERE%20%7B%0A%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20location%28P276%29%20https%3A//www.wikidata.org/wiki/Property%3AP276%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20location%0A%20%20%3Fitem%20wdt%3AP276%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0A%7D%0AGROUP%20BY%20%3Fcount%0AORDER%20BY%20DESC%20%28%3Ffrequency%29 try it!] | |
=== result === | === result === | ||
{| class="wikitable" style="text-align: left;" | {| class="wikitable" style="text-align: left;" | ||
|+ <!-- caption --> | |+ <!-- caption --> | ||
|- | |- | ||
− | ! | + | ! align="right"| count !! align="right"| frequency |
+ | |- | ||
+ | | align="right"| 1 || align="right"| 7180 | ||
|- | |- | ||
− | | | + | | align="right"| 2 || align="right"| 24 |
|- | |- | ||
− | | | + | | align="right"| 3 || align="right"| 4 |
|- | |- | ||
− | | | + | | align="right"| 14 || align="right"| 1 |
|} | |} | ||
− | == non tabular entries for academic conference/ | + | == non tabular entries for academic conference/location:records == |
=== query === | === query === | ||
Line 302: | Line 369: | ||
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
− | # with the given | + | # with the given location(P276) https://www.wikidata.org/wiki/Property:P276 |
− | SELECT ?item (COUNT (?value) AS ?count) | + | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) |
WHERE | WHERE | ||
{ | { | ||
# instance of academic conference | # instance of academic conference | ||
?item wdt:P31 wd:Q2020153. | ?item wdt:P31 wd:Q2020153. | ||
− | # | + | ?item rdfs:label ?itemLabel. |
− | ?item wdt: | + | filter (lang(?itemLabel) = "en"). |
− | } GROUP by ?item | + | # location |
+ | ?item wdt:P276 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
HAVING (COUNT (?value) > 1) | HAVING (COUNT (?value) > 1) | ||
ORDER BY DESC(?count) | ORDER BY DESC(?count) | ||
</source> | </source> | ||
− | + | [https://query.wikidata.org//#%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20location%28P276%29%20https%3A//www.wikidata.org/wiki/Property%3AP276%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20location%0A%20%20%3Fitem%20wdt%3AP276%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0AHAVING%20%28COUNT%20%28%3Fvalue%29%20%3E%201%29%0AORDER%20BY%20DESC%28%3Fcount%29 try it!] | |
=== result === | === result === | ||
{| class="wikitable" style="text-align: left;" | {| class="wikitable" style="text-align: left;" | ||
|+ <!-- caption --> | |+ <!-- caption --> | ||
|- | |- | ||
− | ! item !! align="right"| count | + | ! item !! itemLabel !! align="right"| count |
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q8035745 || World Forestry Congress || align="right"| 14 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q1654334 || Conference for Digital Data Transmission in Amateur Radio || align="right"| 3 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q28052808 || 2017 Conference on Empirical Methods in Natural Language Processing || align="right"| 3 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q47912910 || The 16th International Semantic Web Conference || align="right"| 3 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q94182434 || World Ayahuasca Conference || align="right"| 3 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q59558038 || QCMC 2006 || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q47501061 || 2nd International Conference on Chemical Structures || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q47455387 || The 17th International Semantic Web Conference || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q59558053 || Quantum Aspects of Optical Communication 1990 || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q48025514 || The 15th International Semantic Web Conference || align="right"| 2 | ||
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48025934 || The 12th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48026643 || The 7th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48026807 || The 6th International Semantic Web Conference and the 2nd Asian Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48026926 || The 5th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q90027034 || Answers for Darwin || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q64955764 || 42nd European Conference on Information Retrieval || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q96749264 || A conference on Roman law : the future of obligations || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q56683535 || 63. GMDS Annual Meeting 2018 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q56872346 || 8th International SWAT4LS conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q59555142 || QCMC 2016 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q59555499 || QCMC 2010 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q76721517 || Twentieth Conference on Neural Information Processing Systems || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q73025763 || Neural Information Processing Systems 2004 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104866279 || XXIV Jornadas de Paleontología || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104903952 || XXVIII Jornadas de Paleontología || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106068709 || Digital Libraries and Archives - 7th Italian Research Conference, IRCDL 2011, Pisa, Italy, January 20-21, 2011 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106336297 || ICEIS 2002, 4st International Conference on Enterprise Information Systems, Ciudad Real, Spain, April 2-6, 2002 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106443465 || Discrete Geometry, Combinatorics and Graph Theory, 9th China-Japan Conference, CJCDGCGT 2005, Tianjin, China, November 18-20, 2005, Xi'an, China, November 22-24, 2005 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q108282854 || 23rd International Conference on Theory and Practice of Digital Libraries || align="right"| 2 |
|} | |} | ||
− | == non tabular entries for academic conference/ | + | == non tabular entries for academic conference/start time:frequencies == |
=== query === | === query === | ||
<source lang='sparql'> | <source lang='sparql'> | ||
+ | SELECT ?count (COUNT(?count) AS ?frequency) WHERE { | ||
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
− | # with the given | + | # with the given start time(P580) https://www.wikidata.org/wiki/Property:P580 |
− | SELECT ?item (COUNT (?value) AS ?count) | + | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) |
WHERE | WHERE | ||
{ | { | ||
# instance of academic conference | # instance of academic conference | ||
?item wdt:P31 wd:Q2020153. | ?item wdt:P31 wd:Q2020153. | ||
− | # | + | ?item rdfs:label ?itemLabel. |
− | ?item wdt: | + | filter (lang(?itemLabel) = "en"). |
− | } GROUP by ?item | + | # start time |
− | + | ?item wdt:P580 ?value. | |
− | ORDER BY DESC(? | + | } GROUP by ?item ?itemLabel |
+ | |||
+ | } | ||
+ | GROUP BY ?count | ||
+ | ORDER BY DESC (?frequency) | ||
</source> | </source> | ||
− | + | [https://query.wikidata.org//#SELECT%20%3Fcount%20%28COUNT%28%3Fcount%29%20AS%20%3Ffrequency%29%20WHERE%20%7B%0A%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20start%20time%28P580%29%20https%3A//www.wikidata.org/wiki/Property%3AP580%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20start%20time%0A%20%20%3Fitem%20wdt%3AP580%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0A%7D%0AGROUP%20BY%20%3Fcount%0AORDER%20BY%20DESC%20%28%3Ffrequency%29 try it!] | |
=== result === | === result === | ||
{| class="wikitable" style="text-align: left;" | {| class="wikitable" style="text-align: left;" | ||
|+ <!-- caption --> | |+ <!-- caption --> | ||
|- | |- | ||
− | ! | + | ! align="right"| count !! align="right"| frequency |
|- | |- | ||
− | | | + | | align="right"| 1 || align="right"| 6914 |
|- | |- | ||
− | | | + | | align="right"| 2 || align="right"| 2 |
+ | |} | ||
+ | == non tabular entries for academic conference/start time:records == | ||
+ | |||
+ | === query === | ||
+ | <source lang='sparql'> | ||
+ | |||
+ | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
+ | # with the given start time(P580) https://www.wikidata.org/wiki/Property:P580 | ||
+ | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) | ||
+ | WHERE | ||
+ | { | ||
+ | # instance of academic conference | ||
+ | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
+ | # start time | ||
+ | ?item wdt:P580 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
+ | HAVING (COUNT (?value) > 1) | ||
+ | ORDER BY DESC(?count) | ||
+ | </source> | ||
+ | |||
+ | [https://query.wikidata.org//#%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20start%20time%28P580%29%20https%3A//www.wikidata.org/wiki/Property%3AP580%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20start%20time%0A%20%20%3Fitem%20wdt%3AP580%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0AHAVING%20%28COUNT%20%28%3Fvalue%29%20%3E%201%29%0AORDER%20BY%20DESC%28%3Fcount%29 try it!] | ||
+ | === result === | ||
+ | {| class="wikitable" style="text-align: left;" | ||
+ | |+ <!-- caption --> | ||
|- | |- | ||
− | + | ! item !! itemLabel !! align="right"| count | |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q59979937 || 5th International Conference on Computational Social Science || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q100964080 || The Sixth International Conference on Knowledge Capture || align="right"| 2 |
− | | | + | |} |
− | + | == non tabular entries for academic conference/end time:frequencies == | |
− | + | ||
− | + | === query === | |
+ | <source lang='sparql'> | ||
+ | SELECT ?count (COUNT(?count) AS ?frequency) WHERE { | ||
+ | |||
+ | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
+ | # with the given end time(P582) https://www.wikidata.org/wiki/Property:P582 | ||
+ | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) | ||
+ | WHERE | ||
+ | { | ||
+ | # instance of academic conference | ||
+ | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
+ | # end time | ||
+ | ?item wdt:P582 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
+ | } | ||
+ | GROUP BY ?count | ||
+ | ORDER BY DESC (?frequency) | ||
+ | </source> | ||
+ | |||
+ | [https://query.wikidata.org//#SELECT%20%3Fcount%20%28COUNT%28%3Fcount%29%20AS%20%3Ffrequency%29%20WHERE%20%7B%0A%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20end%20time%28P582%29%20https%3A//www.wikidata.org/wiki/Property%3AP582%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20end%20time%0A%20%20%3Fitem%20wdt%3AP582%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0A%7D%0AGROUP%20BY%20%3Fcount%0AORDER%20BY%20DESC%20%28%3Ffrequency%29 try it!] | ||
+ | === result === | ||
+ | {| class="wikitable" style="text-align: left;" | ||
+ | |+ <!-- caption --> | ||
|- | |- | ||
− | | | + | ! align="right"| count !! align="right"| frequency |
|- | |- | ||
− | | | + | | align="right"| 1 || align="right"| 6909 |
|- | |- | ||
− | | | + | | align="right"| 2 || align="right"| 3 |
|} | |} | ||
− | == non tabular entries for academic conference/ | + | == non tabular entries for academic conference/end time:records == |
=== query === | === query === | ||
Line 412: | Line 559: | ||
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
− | # with the given | + | # with the given end time(P582) https://www.wikidata.org/wiki/Property:P582 |
− | SELECT ?item (COUNT (?value) AS ?count) | + | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) |
WHERE | WHERE | ||
{ | { | ||
# instance of academic conference | # instance of academic conference | ||
?item wdt:P31 wd:Q2020153. | ?item wdt:P31 wd:Q2020153. | ||
− | # | + | ?item rdfs:label ?itemLabel. |
− | ?item wdt: | + | filter (lang(?itemLabel) = "en"). |
− | } GROUP by ?item | + | # end time |
+ | ?item wdt:P582 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
HAVING (COUNT (?value) > 1) | HAVING (COUNT (?value) > 1) | ||
ORDER BY DESC(?count) | ORDER BY DESC(?count) | ||
</source> | </source> | ||
− | + | [https://query.wikidata.org//#%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20end%20time%28P582%29%20https%3A//www.wikidata.org/wiki/Property%3AP582%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20end%20time%0A%20%20%3Fitem%20wdt%3AP582%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0AHAVING%20%28COUNT%20%28%3Fvalue%29%20%3E%201%29%0AORDER%20BY%20DESC%28%3Fcount%29 try it!] | |
=== result === | === result === | ||
{| class="wikitable" style="text-align: left;" | {| class="wikitable" style="text-align: left;" | ||
|+ <!-- caption --> | |+ <!-- caption --> | ||
|- | |- | ||
− | ! item !! align="right"| count | + | ! item !! itemLabel !! align="right"| count |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q59979937 || 5th International Conference on Computational Social Science || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q106331820 || align="right"| 2 | + | | http://www.wikidata.org/entity/Q62250062 || 2019 Conference on Empirical Methods in Natural Language Processing and 9th International Joint Conference on Natural Language Processing || align="right"| 2 |
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q106331820 || AIME 89, Second European Conference on Artificial Intelligence in Medicine, London, UK, August 29th-31st 1989 || align="right"| 2 | ||
|} | |} | ||
− | == non tabular entries for academic conference/ | + | == non tabular entries for academic conference/official website:frequencies == |
=== query === | === query === | ||
<source lang='sparql'> | <source lang='sparql'> | ||
+ | SELECT ?count (COUNT(?count) AS ?frequency) WHERE { | ||
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
− | # with the given | + | # with the given official website(P856) https://www.wikidata.org/wiki/Property:P856 |
− | SELECT ?item (COUNT (?value) AS ?count) | + | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) |
WHERE | WHERE | ||
{ | { | ||
# instance of academic conference | # instance of academic conference | ||
?item wdt:P31 wd:Q2020153. | ?item wdt:P31 wd:Q2020153. | ||
− | # | + | ?item rdfs:label ?itemLabel. |
− | ?item wdt: | + | filter (lang(?itemLabel) = "en"). |
− | } GROUP by ?item | + | # official website |
− | + | ?item wdt:P856 ?value. | |
− | ORDER BY DESC(? | + | } GROUP by ?item ?itemLabel |
+ | |||
+ | } | ||
+ | GROUP BY ?count | ||
+ | ORDER BY DESC (?frequency) | ||
</source> | </source> | ||
− | + | [https://query.wikidata.org//#SELECT%20%3Fcount%20%28COUNT%28%3Fcount%29%20AS%20%3Ffrequency%29%20WHERE%20%7B%0A%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20official%20website%28P856%29%20https%3A//www.wikidata.org/wiki/Property%3AP856%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20official%20website%0A%20%20%3Fitem%20wdt%3AP856%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0A%7D%0AGROUP%20BY%20%3Fcount%0AORDER%20BY%20DESC%20%28%3Ffrequency%29 try it!] | |
=== result === | === result === | ||
− | + | {| class="wikitable" style="text-align: left;" | |
− | == non tabular entries for academic conference/ | + | |+ <!-- caption --> |
+ | |- | ||
+ | ! align="right"| count !! align="right"| frequency | ||
+ | |- | ||
+ | | align="right"| 1 || align="right"| 586 | ||
+ | |- | ||
+ | | align="right"| 2 || align="right"| 9 | ||
+ | |- | ||
+ | | align="right"| 3 || align="right"| 1 | ||
+ | |} | ||
+ | == non tabular entries for academic conference/official website:records == | ||
=== query === | === query === | ||
Line 464: | Line 631: | ||
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
− | # with the given | + | # with the given official website(P856) https://www.wikidata.org/wiki/Property:P856 |
− | SELECT ?item (COUNT (?value) AS ?count) | + | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) |
WHERE | WHERE | ||
{ | { | ||
# instance of academic conference | # instance of academic conference | ||
?item wdt:P31 wd:Q2020153. | ?item wdt:P31 wd:Q2020153. | ||
− | # | + | ?item rdfs:label ?itemLabel. |
− | ?item wdt: | + | filter (lang(?itemLabel) = "en"). |
− | } GROUP by ?item | + | # official website |
+ | ?item wdt:P856 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
HAVING (COUNT (?value) > 1) | HAVING (COUNT (?value) > 1) | ||
ORDER BY DESC(?count) | ORDER BY DESC(?count) | ||
</source> | </source> | ||
− | + | [https://query.wikidata.org//#%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20official%20website%28P856%29%20https%3A//www.wikidata.org/wiki/Property%3AP856%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20official%20website%0A%20%20%3Fitem%20wdt%3AP856%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0AHAVING%20%28COUNT%20%28%3Fvalue%29%20%3E%201%29%0AORDER%20BY%20DESC%28%3Fcount%29 try it!] | |
=== result === | === result === | ||
{| class="wikitable" style="text-align: left;" | {| class="wikitable" style="text-align: left;" | ||
|+ <!-- caption --> | |+ <!-- caption --> | ||
|- | |- | ||
− | ! item | + | ! item !! itemLabel !! align="right"| count |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q94182434 || World Ayahuasca Conference || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q62250062 || 2019 Conference on Empirical Methods in Natural Language Processing and 9th International Joint Conference on Natural Language Processing || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q56101203 || 2018 Conference on Empirical Methods in Natural Language Processing || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q56373190 || PIDapalooza 2019 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q56761651 || Visuals and Analytics that Matter || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q57171737 || 20th Annual Meeting of the Special Interest Group on Discourse and Dialogue || align="right"| 2 |
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q54366589 || The 14th Conference of the European Chapter of the Association for Computational Linguistics || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q47486856 || PIDapalooza 2016 || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q28052808 || 2017 Conference on Empirical Methods in Natural Language Processing || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q47486859 || PIDapalooza 2018 || align="right"| 2 | ||
|} | |} | ||
− | == non tabular entries for academic conference/ | + | == non tabular entries for academic conference/main subject:frequencies == |
=== query === | === query === | ||
<source lang='sparql'> | <source lang='sparql'> | ||
+ | SELECT ?count (COUNT(?count) AS ?frequency) WHERE { | ||
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
− | # with the given | + | # with the given main subject(P921) https://www.wikidata.org/wiki/Property:P921 |
− | SELECT ?item (COUNT (?value) AS ?count) | + | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) |
WHERE | WHERE | ||
{ | { | ||
# instance of academic conference | # instance of academic conference | ||
?item wdt:P31 wd:Q2020153. | ?item wdt:P31 wd:Q2020153. | ||
− | # | + | ?item rdfs:label ?itemLabel. |
− | ?item wdt: | + | filter (lang(?itemLabel) = "en"). |
− | } GROUP by ?item | + | # main subject |
− | + | ?item wdt:P921 ?value. | |
− | ORDER BY DESC(? | + | } GROUP by ?item ?itemLabel |
+ | |||
+ | } | ||
+ | GROUP BY ?count | ||
+ | ORDER BY DESC (?frequency) | ||
</source> | </source> | ||
− | + | [https://query.wikidata.org//#SELECT%20%3Fcount%20%28COUNT%28%3Fcount%29%20AS%20%3Ffrequency%29%20WHERE%20%7B%0A%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20main%20subject%28P921%29%20https%3A//www.wikidata.org/wiki/Property%3AP921%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20main%20subject%0A%20%20%3Fitem%20wdt%3AP921%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0A%7D%0AGROUP%20BY%20%3Fcount%0AORDER%20BY%20DESC%20%28%3Ffrequency%29 try it!] | |
=== result === | === result === | ||
{| class="wikitable" style="text-align: left;" | {| class="wikitable" style="text-align: left;" | ||
|+ <!-- caption --> | |+ <!-- caption --> | ||
|- | |- | ||
− | ! | + | ! align="right"| count !! align="right"| frequency |
+ | |- | ||
+ | | align="right"| 1 || align="right"| 1722 | ||
+ | |- | ||
+ | | align="right"| 2 || align="right"| 131 | ||
+ | |- | ||
+ | | align="right"| 3 || align="right"| 23 | ||
|- | |- | ||
− | | | + | | align="right"| 4 || align="right"| 2 |
|- | |- | ||
− | | | + | | align="right"| 7 || align="right"| 2 |
|- | |- | ||
− | | | + | | align="right"| 5 || align="right"| 1 |
|- | |- | ||
− | | | + | | align="right"| 9 || align="right"| 1 |
|} | |} | ||
− | == non tabular entries for academic conference/main subject == | + | == non tabular entries for academic conference/main subject:records == |
=== query === | === query === | ||
Line 537: | Line 726: | ||
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
# with the given main subject(P921) https://www.wikidata.org/wiki/Property:P921 | # with the given main subject(P921) https://www.wikidata.org/wiki/Property:P921 | ||
− | SELECT ?item (COUNT (?value) AS ?count) | + | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) |
WHERE | WHERE | ||
{ | { | ||
# instance of academic conference | # instance of academic conference | ||
?item wdt:P31 wd:Q2020153. | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
# main subject | # main subject | ||
?item wdt:P921 ?value. | ?item wdt:P921 ?value. | ||
− | } GROUP by ?item | + | } GROUP by ?item ?itemLabel |
+ | |||
HAVING (COUNT (?value) > 1) | HAVING (COUNT (?value) > 1) | ||
ORDER BY DESC(?count) | ORDER BY DESC(?count) | ||
</source> | </source> | ||
− | + | [https://query.wikidata.org//#%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20main%20subject%28P921%29%20https%3A//www.wikidata.org/wiki/Property%3AP921%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20main%20subject%0A%20%20%3Fitem%20wdt%3AP921%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0AHAVING%20%28COUNT%20%28%3Fvalue%29%20%3E%201%29%0AORDER%20BY%20DESC%28%3Fcount%29 try it!] | |
=== result === | === result === | ||
{| class="wikitable" style="text-align: left;" | {| class="wikitable" style="text-align: left;" | ||
|+ <!-- caption --> | |+ <!-- caption --> | ||
|- | |- | ||
− | ! item !! align="right"| count | + | ! item !! itemLabel !! align="right"| count |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q1654334 || align="right"| 9 | + | | http://www.wikidata.org/entity/Q1654334 || Conference for Digital Data Transmission in Amateur Radio || align="right"| 9 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q62204896 || align="right"| 7 | + | | http://www.wikidata.org/entity/Q62204896 || Researcher meets Curator || align="right"| 7 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q108654909 || align="right"| 7 | + | | http://www.wikidata.org/entity/Q108654909 || TurkLang || align="right"| 7 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q99430301 || align="right"| 5 | + | | http://www.wikidata.org/entity/Q99430301 || Africa knows! || align="right"| 5 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q75533882 || align="right"| 4 | + | | http://www.wikidata.org/entity/Q75533882 || Open Science in Action || align="right"| 4 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q104842040 || align="right"| 4 | + | | http://www.wikidata.org/entity/Q104842040 || XIX Jornadas de Paleontología || align="right"| 4 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q88860125 || Graph Technologies in the Humanities 2020 || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q88864270 || Graph Technologies in the Humanities 2019 || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q56235977 || 10th International SWAT4HCLS conference || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244172 || Augmented Reality, Virtual Reality, and Computer Graphics - 7th International Conference, AVR 2020, Lecce, Italy, September 7-10, 2020 || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q47449692 || 14th International Symposium on Open Collaboration || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q59264323 || SWIB19 || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q47904349 || Conferência Luso-Brasileira sobre Acesso Aberto || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q99098582 || Port Towns of Gujarat || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q101231219 || SWIB20 || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104723376 || III Jornadas de Paleontología || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106245243 || MIPPR 2017: Remote Sensing Image Processing, Geographic Information Systems, and Other Applications, Tenth International Symposium on Multispectral Image Processing and Pattern Recognition (MIPPR2017), Xiangyang, China, 28-29 October 2017 || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243684 || Machine Learning and Data Mining in Pattern Recognition, 6th International Conference, MLDM 2009, Leipzig, Germany, July 23-25, 2009 || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104865385 || XXI Jornadas de Paleontología || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104866013 || XXIII Jornadas de Paleontología || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104883066 || XXV Jornadas de Paleontología || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104903902 || XXVII Jornadas de Paleontología || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104903952 || XXVIII Jornadas de Paleontología || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104904073 || XXXI Jornadas de Paleontología || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104904110 || XXXII Jornadas de Paleontología || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104910622 || XXXIV Jornadas de Paleontología || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104949395 || XXXV Jornadas de Paleontología || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q108805555 || WissKom2022 || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q109807172 || SWIB21 || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q60922709 || 1st Iberoamerican Knowledge Graphs and Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q61054372 || The 57th Annual Meeting of the Association for Computational Linguistics || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q63828174 || Persistent Identifiers in biodiversity data life cycle || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q56192254 || 2010 Caenorhabditis elegans Neurobiology Meeting || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q56876300 || Research Output & Impact Analyzed and Visualized: Concluding Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244257 || Computer Games: AI, Animation, Mobile, Multimedia, Educational and Serious Games , CGAMES 2015, Louisville, KY, USA, July 27-29, 2015 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244323 || Data Mining and Big Data - Second International Conference, DMBD 2017, Fukuoka, Japan, July 27 - August 1, 2017 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q42740247 || align="right"| 2 | + | | http://www.wikidata.org/entity/Q42740247 || Biographical Data in a Digital World 2017 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q47259608 || align="right"| 2 | + | | http://www.wikidata.org/entity/Q47259608 || Thirty-second Annual Conference on Neural Information Processing Systems || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q47450029 || align="right"| 2 | + | | http://www.wikidata.org/entity/Q47450029 || 21st International Conference on Artificial Intelligence and Statistics || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q47455387 || align="right"| 2 | + | | http://www.wikidata.org/entity/Q47455387 || The 17th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q57083744 || Telling Her Story: Women's History, Heritage and the Built Environment || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q57171737 || 20th Annual Meeting of the Special Interest Group on Discourse and Dialogue || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q58485225 || The 7th conference of the Scandinavian Association for Language and Cognition || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244367 || Discrete Mathematics and Theoretical Computer Science, 4th International Conference, DMTCS 2003, Dijon, France, July 7-12, 2003 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244551 || 13th International Joint Conference on Computer Vision, Imaging and Computer Graphics Theory and Applications (VISIGRAPP 2018) - HUCAPP, Funchal, Madeira, Portugal, January 27-29, 2018 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q47501293 || Third International Conference on Chemical Structures || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q47912910 || The 16th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48025514 || The 15th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48025651 || The 14th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48025840 || The 13th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48025934 || The 12th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48026033 || The 11th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48026129 || The 10th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48026260 || The 9th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48026503 || The 8th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48026643 || The 7th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48026807 || The 6th International Semantic Web Conference and the 2nd Asian Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48027931 || The 18th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48619834 || 56th Annual Meeting of the Association for Computational Linguistics || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q50706744 || 10th International Conference on Ecological Informatics || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q53627647 || 4th Dutch Bioinformatics & Systems Biology Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q19231616 || Science and nonviolence (conference) - French || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q28052972 || Thirty-first Conference on Neural Information Processing Systems || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q67080838 || Women, Status and Power in Medieval Society || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q67080999 || Grave Concerns: Death, Landscape, and Locality in Medieval Society || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q70334179 || On Bees and Humans || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q70971538 || The What, How and Why of Open Science || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q71045244 || Eighth International Conference on Learning Representations || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q71385296 || Medical Education Informatics International Conference 2012 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q72799678 || Digital Skills for Data Intensive Science || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244677 || Sixth International Conference on Innovative Mobile and Internet Services in Ubiquitous Computing, IMIS 2012, Palermo, Italy, July 4-6, 2012 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244729 || International Conference on Internet Computing, IC '03, Las Vegas, Nevada, USA, June 23-26, 2003 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244730 || International Conference on Internet Computing, IC 2002, Las Vegas, Nevada, USA, June 24-27, 2002 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244733 || Internet of Things (IoT) Technologies for HealthCare - 4th International Conference, HealthyIoT 2017, Angers, France, October 24-25, 2017 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244769 || 25th International Conference on Mechatronics and Machine Vision in Practice, M2VIP 2018, Stuttgart, Germany, November 20-22, 2018 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244849 || 12th IAPR International Conference on Pattern Recognition, Conference A: Computer Vision & Image Processing, ICPR 1994, Jerusalem, Israel, 9-13 October, 1994 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q65055454 || 'The Long Black Death': New Perspectives || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106304527 || 23rd International ACM Conference on 3D Web Technology, Web3D 2018, Poznań, Poland, June 20-22, 2018 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106245030 || Ubiquitous Computing and Ambient Intelligence. Sensing, Processing, and Using Environmental Information - 9th International Conference, UCAmI 2015, Puerto Varas, Chile, December 1-4, 2015 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106245042 || 31st International Conference on VLSI Design and 17th International Conference on Embedded Systems, VLSID 2018, Pune, India, January 6-10, 2018 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q96749264 || A conference on Roman law : the future of obligations || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q98602742 || Gender and Punishment || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q98605430 || Gender, Time and Memory || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q98837528 || After Timur Came : Multiple Spaces of Cultural Production and Circulation in Fifteenth-Century North India || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106232306 || 12th International Conference on Computer Graphics Theory and Applications (GRAPP 2017), Porto, Portugal, February 27 - March 1, 2017 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106232311 || 13th International Conference on Computer Vision Theory and Applications (VISAPP 2018), Funchal, Madeira, Portugal, January 27-29, 2018 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106232312 || 12th International Conference on Computer Vision Theory and Applications (VISAPP 2017), Porto, Portugal, February 27 - March 1, 2017 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106232317 || 8th International Conference on Information Visualization Theory and Applications (IVAPP 2017), Porto, Portugal, February 27 - March 1, 2017 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106232318 || 12th International Joint Conference on Computer Vision, Imaging and Computer Graphics Theory and Applications (VISIGRAPP 2017), Porto, Portugal, February 27 - March 1, 2017 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106242554 || HT'11, 22nd ACM Conference on Hypertext and Hypermedia, Eindhoven, The Netherlands, June 6-9, 2011 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104246429 || World Congress of African Linguistics || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104722655 || I Jornadas de Paleontología || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104722990 || II Jornadas de Paleontología || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104723700 || IV Jornadas de Paleontología || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104758795 || V Jornadas de Paleontología || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104758823 || VI Jornadas de Paleontología || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104758855 || VII Jornadas de Paleontología || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q106243128 || align="right"| 2 | + | | http://www.wikidata.org/entity/Q106243128 || Algebra and Coalgebra in Computer Science - 4th International Conference, CALCO 2011, Winchester, UK, August 30 - September 2, 2011 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q106243129 || align="right"| 2 | + | | http://www.wikidata.org/entity/Q106243129 || Algebra and Coalgebra in Computer Science, Third International Conference, CALCO 2009, Udine, Italy, September 7-10, 2009 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q106243130 || align="right"| 2 | + | | http://www.wikidata.org/entity/Q106243130 || Algebra and Coalgebra in Computer Science, Second International Conference, CALCO 2007, Bergen, Norway, August 20-24, 2007 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q106243131 || align="right"| 2 | + | | http://www.wikidata.org/entity/Q106243131 || Algebra and Coalgebra in Computer Science: First International Conference, CALCO 2005, Swansea, UK, September 3-6, 2005 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q106243157 || align="right"| 2 | + | | http://www.wikidata.org/entity/Q106243157 || fourth international conference on Functional programming languages and computer architecture, FPCA 1989, London, UK, September 11-13, 1989 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q106243318 || align="right"| 2 | + | | http://www.wikidata.org/entity/Q106243318 || Energy Minimization Methods in Computer Vision and Pattern Recognition, 6th International Conference, EMMCVPR 2007, Ezhou, China, August 27-29, 2007 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q106243335 || align="right"| 2 | + | | http://www.wikidata.org/entity/Q106243335 || Virtual Reality and Augmented Reality - 16th EuroVR International Conference, EuroVR 2019, Tallinn, Estonia, October 23-25, 2019 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q106243336 || align="right"| 2 | + | | http://www.wikidata.org/entity/Q106243336 || Virtual Reality and Augmented Reality - 15th EuroVR International Conference, EuroVR 2018, London, UK, October 22-23, 2018 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243590 || 2018 Formal Methods in Computer Aided Design, FMCAD 2018, Austin, TX, USA, October 30 - November 2, 2018 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243591 || Formal Methods in Computer-Aided Design, 5th International Conference, FMCAD 2004, Austin, Texas, USA, November 15-17, 2004 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243592 || Formal Methods in Computer-Aided Design, 4th International Conference, FMCAD 2002, Portland, OR, USA, November 6-8, 2002 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243593 || Formal Methods in Computer-Aided Design, Second International Conference, FMCAD '98, Palo Alto, California, USA, November 4-6, 1998 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243594 || Formal Methods in Computer-Aided Design, First International Conference, FMCAD '96, Palo Alto, California, USA, November 6-8, 1996 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106245327 || VLSI Design and Test - 22nd International Symposium, VDAT 2018, Madurai, India, June 28-30, 2018 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106245328 || VLSI Design and Test - 21st International Symposium, VDAT 2017, Roorkee, India, June 29 - July 2, 2017 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106245329 || VLSI Design and Test, 17th International Symposium, VDAT 2013, Jaipur, India, July 27-30, 2013 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106245364 || Bioinformatics and Biomedical Engineering - 7th International Work-Conference, IWBBIO 2019, Granada, Spain, May 8-10, 2019 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106245365 || Bioinformatics and Biomedical Engineering - 6th International Work-Conference, IWBBIO 2018, Granada, Spain, April 25-27, 2018 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106245366 || Bioinformatics and Biomedical Engineering - Third International Conference, IWBBIO 2015, Granada, Spain, April 15-17, 2015 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106262706 || 2nd Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRNDL 2017), Tokyo, Japan, August 11, 2017 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106303728 || HT'10, 21st ACM Conference on Hypertext and Hypermedia, Toronto, Ontario, Canada, June 13-16, 2010 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106303729 || HYPERTEXT 2009, 20th ACM Conference on Hypertext and Hypermedia, Torino, Italy, June 29 - July 1, 2009 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106303736 || BCB '20: 11th ACM International Conference on Bioinformatics, Computational Biology and Health Informatics, Virtual Event, USA, September 21-24, 2020 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106303737 || 2018 ACM International Conference on Bioinformatics, Computational Biology, and Health Informatics, BCB 2018, Washington, DC, USA, August 29 - September 01, 2018 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106303738 || 5th ACM Conference on Bioinformatics, Computational Biology, and Health Informatics, BCB '14, Newport Beach, California, USA, September 20-23, 2014 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106303739 || ACM International Conference on Bioinformatics, Computational Biology and Biomedicine, BCB' 12, Orlando, FL, USA - October 08 - 10, 2012 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106242896 || Artificial Intelligence and Computational Intelligence - 4th International Conference, AICI 2012, Chengdu, China, October 26-28, 2012 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106242940 || Artificial Life and Computational Intelligence - Third Australasian Conference, ACALCI 2017, Geelong, VIC, Australia, January 31 - February 2, 2017 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243020 || People and Computers XIV - Usability or Else!, BCS HCI 2000, Sunderland, UK, September 5-8, 2000 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244015 || Geographic Information Science, 5th International Conference, GIScience 2008, Park City, UT, USA, September 23-26, 2008 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244017 || Geographic Information Science, 4th International Conference, GIScience 2006, Münster, Germany, September 20-23, 2006 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244025 || Twelfth International Conference on 3D Web Technology, Web3D 2007, Perugia, Italy, April 15-18, 2007 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244027 || Tenth International Conference on 3D Web Technology, Web3D 2005, Bangor, UK, March 29 - April 1, 2005 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244028 || Seventh International Conference on 3D Web Technology, Web3D 2002, Tempe Mission Palms, Tempe, Arizona, USA, February 24-28, 2002 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244103 || Agile Processes in Software Engineering and Extreme Programming - 12th International Conference, XP 2011, Madrid, Spain, May 10-13, 2011 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244105 || Agile Processes in Software Engineering and Extreme Programming, 8th International Conference, XP 2007, Como, Italy, June 18-22, 2007 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243727 || Formal Methods and Software Engineering - 21st International Conference on Formal Engineering Methods, ICFEM 2019, Shenzhen, China, November 5-9, 2019 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243728 || Formal Methods and Software Engineering - 20th International Conference on Formal Engineering Methods, ICFEM 2018, Gold Coast, QLD, Australia, November 12-16, 2018 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243730 || Formal Methods and Software Engineering - 13th International Conference on Formal Engineering Methods, ICFEM 2011, Durham, UK, October 26-28, 2011 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243731 || Formal Methods and Software Engineering, 9th International Conference on Formal Engineering Methods, ICFEM 2007, Boca Raton, FL, USA, November 14-15, 2007 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243732 || Formal Methods and Software Engineering, 7th International Conference on Formal Engineering Methods, ICFEM 2005, Manchester, UK, November 1-4, 2005 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243744 || Formal Methods and Software Engineering, 6th International Conference on Formal Engineering Methods, ICFEM 2004, Seattle, WA, USA, November 8-12, 2004 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243775 || 15th IEEE International Conference of System of Systems Engineering, SoSE 2020, Budapest, Hungary, June 2-4, 2020 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243776 || 13th Annual Conference on System of Systems Engineering, SoSE 2018, Paris, France, June 19-22, 2018 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243840 || 36th IEEE VLSI Test Symposium, VTS 2018, San Francisco, CA, USA, April 22-25, 2018 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243841 || 35th IEEE VLSI Test Symposium, VTS 2017, Las Vegas, NV, USA, April 9-12, 2017 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243921 || Progress in Pattern Recognition, Image Analysis, Computer Vision, and Applications - 17th Iberoamerican Congress, CIARP 2012, Buenos Aires, Argentina, September 3-6, 2012 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243940 || Advances in Data Mining. Medical Applications, E-Commerce, Marketing, and Theoretical Aspects, 8th Industrial Conference, ICDM 2008, Leipzig, Germany, July 16-18, 2008 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106243971 || Integration of Constraint Programming, Artificial Intelligence, and Operations Research - 15th International Conference, CPAIOR 2018, Delft, The Netherlands, June 26-29, 2018 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106244014 || Geographic Information Science, 6th International Conference, GIScience 2010, Zurich, Switzerland, September 14-17, 2010 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104829424 || XIV Jornadas de Paleontología || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104831999 || XV Jornadas de Paleontología || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104832441 || XVII Jornadas de Paleontología || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104864806 || XX Jornadas de Paleontología || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104865744 || XXII Jornadas de Paleontología || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104866279 || XXIV Jornadas de Paleontología || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104904003 || XXIX Jornadas de Paleontología || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q104909835 || XXXIII Jornadas de Paleontología || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106443465 || Discrete Geometry, Combinatorics and Graph Theory, 9th China-Japan Conference, CJCDGCGT 2005, Tianjin, China, November 18-20, 2005, Xi'an, China, November 22-24, 2005 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q107255073 || The measure and meaning of time in the Americas || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q107315203 || Third Iberoamerican Knowledge Graph and Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q107379187 || 2nd Austrian Summit on Natural Products || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q107614860 || Cultures of Cloth: The archaeology of textiles in medieval Northwest Europe || align="right"| 2 |
+ | |} | ||
+ | == non tabular entries for academic conference/describ'd at URL:frequencies == | ||
+ | |||
+ | === query === | ||
+ | <source lang='sparql'> | ||
+ | SELECT ?count (COUNT(?count) AS ?frequency) WHERE { | ||
+ | |||
+ | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
+ | # with the given describ'd at URL(P973) https://www.wikidata.org/wiki/Property:P973 | ||
+ | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) | ||
+ | WHERE | ||
+ | { | ||
+ | # instance of academic conference | ||
+ | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
+ | # describ'd at URL | ||
+ | ?item wdt:P973 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
+ | } | ||
+ | GROUP BY ?count | ||
+ | ORDER BY DESC (?frequency) | ||
+ | </source> | ||
+ | |||
+ | [https://query.wikidata.org//#SELECT%20%3Fcount%20%28COUNT%28%3Fcount%29%20AS%20%3Ffrequency%29%20WHERE%20%7B%0A%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20describ%27d%20at%20URL%28P973%29%20https%3A//www.wikidata.org/wiki/Property%3AP973%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20describ%27d%20at%20URL%0A%20%20%3Fitem%20wdt%3AP973%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0A%7D%0AGROUP%20BY%20%3Fcount%0AORDER%20BY%20DESC%20%28%3Ffrequency%29 try it!] | ||
+ | === result === | ||
+ | {| class="wikitable" style="text-align: left;" | ||
+ | |+ <!-- caption --> | ||
|- | |- | ||
− | | | + | ! align="right"| count !! align="right"| frequency |
|- | |- | ||
− | | | + | | align="right"| 1 || align="right"| 6510 |
|- | |- | ||
− | | | + | | align="right"| 2 || align="right"| 1 |
|- | |- | ||
− | | | + | | align="right"| 3 || align="right"| 1 |
+ | |} | ||
+ | == non tabular entries for academic conference/describ'd at URL:records == | ||
+ | |||
+ | === query === | ||
+ | <source lang='sparql'> | ||
+ | |||
+ | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
+ | # with the given describ'd at URL(P973) https://www.wikidata.org/wiki/Property:P973 | ||
+ | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) | ||
+ | WHERE | ||
+ | { | ||
+ | # instance of academic conference | ||
+ | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
+ | # describ'd at URL | ||
+ | ?item wdt:P973 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
+ | HAVING (COUNT (?value) > 1) | ||
+ | ORDER BY DESC(?count) | ||
+ | </source> | ||
+ | |||
+ | [https://query.wikidata.org//#%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20describ%27d%20at%20URL%28P973%29%20https%3A//www.wikidata.org/wiki/Property%3AP973%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20describ%27d%20at%20URL%0A%20%20%3Fitem%20wdt%3AP973%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0AHAVING%20%28COUNT%20%28%3Fvalue%29%20%3E%201%29%0AORDER%20BY%20DESC%28%3Fcount%29 try it!] | ||
+ | === result === | ||
+ | {| class="wikitable" style="text-align: left;" | ||
+ | |+ <!-- caption --> | ||
|- | |- | ||
− | + | ! item !! itemLabel !! align="right"| count | |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106540635 || 2006 IEEE International Conference on Services Computing || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106331820 || AIME 89, Second European Conference on Artificial Intelligence in Medicine, London, UK, August 29th-31st 1989 || align="right"| 2 |
+ | |} | ||
+ | == non tabular entries for academic conference/title:frequencies == | ||
+ | |||
+ | === query === | ||
+ | <source lang='sparql'> | ||
+ | SELECT ?count (COUNT(?count) AS ?frequency) WHERE { | ||
+ | |||
+ | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
+ | # with the given title(P1476) https://www.wikidata.org/wiki/Property:P1476 | ||
+ | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) | ||
+ | WHERE | ||
+ | { | ||
+ | # instance of academic conference | ||
+ | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
+ | # title | ||
+ | ?item wdt:P1476 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
+ | } | ||
+ | GROUP BY ?count | ||
+ | ORDER BY DESC (?frequency) | ||
+ | </source> | ||
+ | |||
+ | [https://query.wikidata.org//#SELECT%20%3Fcount%20%28COUNT%28%3Fcount%29%20AS%20%3Ffrequency%29%20WHERE%20%7B%0A%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20title%28P1476%29%20https%3A//www.wikidata.org/wiki/Property%3AP1476%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20title%0A%20%20%3Fitem%20wdt%3AP1476%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0A%7D%0AGROUP%20BY%20%3Fcount%0AORDER%20BY%20DESC%20%28%3Ffrequency%29 try it!] | ||
+ | === result === | ||
+ | {| class="wikitable" style="text-align: left;" | ||
+ | |+ <!-- caption --> | ||
+ | |- | ||
+ | ! align="right"| count !! align="right"| frequency | ||
+ | |- | ||
+ | | align="right"| 1 || align="right"| 6700 | ||
+ | |- | ||
+ | | align="right"| 2 || align="right"| 10 | ||
+ | |- | ||
+ | | align="right"| 3 || align="right"| 8 | ||
+ | |} | ||
+ | == non tabular entries for academic conference/title:records == | ||
+ | |||
+ | === query === | ||
+ | <source lang='sparql'> | ||
+ | |||
+ | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
+ | # with the given title(P1476) https://www.wikidata.org/wiki/Property:P1476 | ||
+ | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) | ||
+ | WHERE | ||
+ | { | ||
+ | # instance of academic conference | ||
+ | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
+ | # title | ||
+ | ?item wdt:P1476 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
+ | HAVING (COUNT (?value) > 1) | ||
+ | ORDER BY DESC(?count) | ||
+ | </source> | ||
+ | |||
+ | [https://query.wikidata.org//#%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20title%28P1476%29%20https%3A//www.wikidata.org/wiki/Property%3AP1476%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20title%0A%20%20%3Fitem%20wdt%3AP1476%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0AHAVING%20%28COUNT%20%28%3Fvalue%29%20%3E%201%29%0AORDER%20BY%20DESC%28%3Fcount%29 try it!] | ||
+ | === result === | ||
+ | {| class="wikitable" style="text-align: left;" | ||
+ | |+ <!-- caption --> | ||
+ | |- | ||
+ | ! item !! itemLabel !! align="right"| count | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q63430342 || 1. Solvay Conference on Physics || align="right"| 3 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q63430343 || 2. Solvay Conference on Physics || align="right"| 3 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q63430344 || 3. Solvay Conference on Physics || align="right"| 3 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q63430345 || 4. Solvay Conference on Physics || align="right"| 3 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q63430346 || 5. Solvay Conference on Physics || align="right"| 3 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q63430347 || 6. Solvay Conference on Physics || align="right"| 3 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q63430348 || 7. Solvay Conference on Physics || align="right"| 3 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q63430349 || 8. Solvay Conference on Physics || align="right"| 3 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q76721640 || Neural Information Processing Systems 2005 || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q106335329 || 2019 IEEE Vehicular Networking Conference, VNC 2019, Los Angeles, CA, USA, December 4-6, 2019 || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q106335331 || 2014 IEEE Vehicular Networking Conference, VNC 2014, Paderborn, Germany, December 3-5, 2014 || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q106335332 || 2013 IEEE Vehicular Networking Conference, Boston, MA, USA, December 16-18, 2013 || align="right"| 2 | ||
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106335333 || 2012 IEEE Vehicular Networking Conference, VNC 2012, Seoul, Korea (South), November 14-16, 2012 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106077799 || Artificial Intelligence in Medicine - 15th Conference on Artificial Intelligence in Medicine, AIME 2015, Pavia, Italy, June 17-20, 2015 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106067248 || Artificial Intelligence in Medicine - 13th Conference on Artificial Intelligence in Medicine, AIME 2011, Bled, Slovenia, July 2-6, 2011 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q106067252 || Artificial Intelligence in Medicine, 12th Conference on Artificial Intelligence in Medicine, AIME 2009, Verona, Italy, July 18-22, 2009 || align="right"| 2 |
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q106243134 || Artificial Intelligence in Medicine, 11th Conference on Artificial Intelligence in Medicine, AIME 2007, Amsterdam, The Netherlands, July 7-11, 2007 || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q106331818 || Artificial Intelligence in Medicine, 10th Conference on Artificial Intelligence in Medicine, AIME 2005, Aberdeen, UK, July 23-27, 2005 || align="right"| 2 | ||
|} | |} | ||
− | == non tabular entries for academic conference/ | + | == non tabular entries for academic conference/short name:frequencies == |
=== query === | === query === | ||
<source lang='sparql'> | <source lang='sparql'> | ||
+ | SELECT ?count (COUNT(?count) AS ?frequency) WHERE { | ||
+ | |||
+ | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
+ | # with the given short name(P1813) https://www.wikidata.org/wiki/Property:P1813 | ||
+ | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) | ||
+ | WHERE | ||
+ | { | ||
+ | # instance of academic conference | ||
+ | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
+ | # short name | ||
+ | ?item wdt:P1813 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
+ | } | ||
+ | GROUP BY ?count | ||
+ | ORDER BY DESC (?frequency) | ||
+ | </source> | ||
+ | |||
+ | [https://query.wikidata.org//#SELECT%20%3Fcount%20%28COUNT%28%3Fcount%29%20AS%20%3Ffrequency%29%20WHERE%20%7B%0A%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20short%20name%28P1813%29%20https%3A//www.wikidata.org/wiki/Property%3AP1813%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20short%20name%0A%20%20%3Fitem%20wdt%3AP1813%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0A%7D%0AGROUP%20BY%20%3Fcount%0AORDER%20BY%20DESC%20%28%3Ffrequency%29 try it!] | ||
+ | === result === | ||
+ | {| class="wikitable" style="text-align: left;" | ||
+ | |+ <!-- caption --> | ||
+ | |- | ||
+ | ! align="right"| count !! align="right"| frequency | ||
+ | |- | ||
+ | | align="right"| 1 || align="right"| 6741 | ||
+ | |- | ||
+ | | align="right"| 2 || align="right"| 9 | ||
+ | |} | ||
+ | == non tabular entries for academic conference/short name:records == | ||
+ | |||
+ | === query === | ||
+ | <source lang='sparql'> | ||
+ | |||
+ | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
+ | # with the given short name(P1813) https://www.wikidata.org/wiki/Property:P1813 | ||
+ | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) | ||
+ | WHERE | ||
+ | { | ||
+ | # instance of academic conference | ||
+ | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
+ | # short name | ||
+ | ?item wdt:P1813 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
+ | HAVING (COUNT (?value) > 1) | ||
+ | ORDER BY DESC(?count) | ||
+ | </source> | ||
+ | |||
+ | [https://query.wikidata.org//#%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20short%20name%28P1813%29%20https%3A//www.wikidata.org/wiki/Property%3AP1813%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20short%20name%0A%20%20%3Fitem%20wdt%3AP1813%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0AHAVING%20%28COUNT%20%28%3Fvalue%29%20%3E%201%29%0AORDER%20BY%20DESC%28%3Fcount%29 try it!] | ||
+ | === result === | ||
+ | {| class="wikitable" style="text-align: left;" | ||
+ | |+ <!-- caption --> | ||
+ | |- | ||
+ | ! item !! itemLabel !! align="right"| count | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q59979937 || 5th International Conference on Computational Social Science || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q62250062 || 2019 Conference on Empirical Methods in Natural Language Processing and 9th International Joint Conference on Natural Language Processing || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q64762682 || 12th International SWAT4HCLS conference || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q69110063 || Lernen, Wissen, Daten, Analysen 2019 || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q105944141 || Recent Trends in Image Processing and Pattern Recognition - Second International Conference, RTIP2R 2018, Solapur, India, December 21-22, 2018 || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q56235977 || 10th International SWAT4HCLS conference || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q56236021 || 11th International SWAT4HCLS conference || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q106540635 || 2006 IEEE International Conference on Services Computing || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q108210083 || 2016 IEEE/ACM Joint Conference on Digital Libraries || align="right"| 2 | ||
+ | |} | ||
+ | == non tabular entries for academic conference/language used:frequencies == | ||
+ | |||
+ | === query === | ||
+ | <source lang='sparql'> | ||
+ | SELECT ?count (COUNT(?count) AS ?frequency) WHERE { | ||
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
# with the given language used(P2936) https://www.wikidata.org/wiki/Property:P2936 | # with the given language used(P2936) https://www.wikidata.org/wiki/Property:P2936 | ||
− | SELECT ?item (COUNT (?value) AS ?count) | + | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) |
WHERE | WHERE | ||
{ | { | ||
# instance of academic conference | # instance of academic conference | ||
?item wdt:P31 wd:Q2020153. | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
# language used | # language used | ||
?item wdt:P2936 ?value. | ?item wdt:P2936 ?value. | ||
− | } GROUP by ?item | + | } GROUP by ?item ?itemLabel |
+ | |||
+ | } | ||
+ | GROUP BY ?count | ||
+ | ORDER BY DESC (?frequency) | ||
+ | </source> | ||
+ | |||
+ | [https://query.wikidata.org//#SELECT%20%3Fcount%20%28COUNT%28%3Fcount%29%20AS%20%3Ffrequency%29%20WHERE%20%7B%0A%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20language%20used%28P2936%29%20https%3A//www.wikidata.org/wiki/Property%3AP2936%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20language%20used%0A%20%20%3Fitem%20wdt%3AP2936%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0A%7D%0AGROUP%20BY%20%3Fcount%0AORDER%20BY%20DESC%20%28%3Ffrequency%29 try it!] | ||
+ | === result === | ||
+ | {| class="wikitable" style="text-align: left;" | ||
+ | |+ <!-- caption --> | ||
+ | |- | ||
+ | ! align="right"| count !! align="right"| frequency | ||
+ | |- | ||
+ | | align="right"| 1 || align="right"| 84 | ||
+ | |- | ||
+ | | align="right"| 2 || align="right"| 3 | ||
+ | |} | ||
+ | == non tabular entries for academic conference/language used:records == | ||
+ | |||
+ | === query === | ||
+ | <source lang='sparql'> | ||
+ | |||
+ | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
+ | # with the given language used(P2936) https://www.wikidata.org/wiki/Property:P2936 | ||
+ | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) | ||
+ | WHERE | ||
+ | { | ||
+ | # instance of academic conference | ||
+ | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
+ | # language used | ||
+ | ?item wdt:P2936 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
HAVING (COUNT (?value) > 1) | HAVING (COUNT (?value) > 1) | ||
ORDER BY DESC(?count) | ORDER BY DESC(?count) | ||
</source> | </source> | ||
+ | [https://query.wikidata.org//#%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20language%20used%28P2936%29%20https%3A//www.wikidata.org/wiki/Property%3AP2936%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20language%20used%0A%20%20%3Fitem%20wdt%3AP2936%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0AHAVING%20%28COUNT%20%28%3Fvalue%29%20%3E%201%29%0AORDER%20BY%20DESC%28%3Fcount%29 try it!] | ||
+ | === result === | ||
+ | {| class="wikitable" style="text-align: left;" | ||
+ | |+ <!-- caption --> | ||
+ | |- | ||
+ | ! item !! itemLabel !! align="right"| count | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q88860125 || Graph Technologies in the Humanities 2020 || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q88864270 || Graph Technologies in the Humanities 2019 || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q63686495 || Conference on Natural Language Processing 2019 || align="right"| 2 | ||
+ | |} | ||
+ | == non tabular entries for academic conference/is proceedings from:frequencies == | ||
+ | |||
+ | === query === | ||
+ | <source lang='sparql'> | ||
+ | SELECT ?count (COUNT(?count) AS ?frequency) WHERE { | ||
+ | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
+ | # with the given is proceedings from(P4745) https://www.wikidata.org/wiki/Property:P4745 | ||
+ | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) | ||
+ | WHERE | ||
+ | { | ||
+ | # instance of academic conference | ||
+ | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
+ | # is proceedings from | ||
+ | ?item ^wdt:P4745 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
+ | } | ||
+ | GROUP BY ?count | ||
+ | ORDER BY DESC (?frequency) | ||
+ | </source> | ||
+ | |||
+ | [https://query.wikidata.org//#SELECT%20%3Fcount%20%28COUNT%28%3Fcount%29%20AS%20%3Ffrequency%29%20WHERE%20%7B%0A%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20is%20proceedings%20from%28P4745%29%20https%3A//www.wikidata.org/wiki/Property%3AP4745%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20is%20proceedings%20from%0A%20%20%3Fitem%20%5Ewdt%3AP4745%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0A%7D%0AGROUP%20BY%20%3Fcount%0AORDER%20BY%20DESC%20%28%3Ffrequency%29 try it!] | ||
=== result === | === result === | ||
{| class="wikitable" style="text-align: left;" | {| class="wikitable" style="text-align: left;" | ||
|+ <!-- caption --> | |+ <!-- caption --> | ||
|- | |- | ||
− | ! | + | ! align="right"| count !! align="right"| frequency |
+ | |- | ||
+ | | align="right"| 1 || align="right"| 901 | ||
|- | |- | ||
− | | | + | | align="right"| 2 || align="right"| 16 |
|- | |- | ||
− | | | + | | align="right"| 3 || align="right"| 3 |
|- | |- | ||
− | | | + | | align="right"| 4 || align="right"| 1 |
|} | |} | ||
− | == non tabular entries for academic conference/proceedings == | + | == non tabular entries for academic conference/is proceedings from:records == |
=== query === | === query === | ||
Line 936: | Line 1,437: | ||
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
− | # with the given proceedings(P4745) https://www.wikidata.org/wiki/Property:P4745 | + | # with the given is proceedings from(P4745) https://www.wikidata.org/wiki/Property:P4745 |
− | SELECT ?item (COUNT (?value) AS ?count) | + | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) |
WHERE | WHERE | ||
{ | { | ||
# instance of academic conference | # instance of academic conference | ||
?item wdt:P31 wd:Q2020153. | ?item wdt:P31 wd:Q2020153. | ||
− | # proceedings | + | ?item rdfs:label ?itemLabel. |
+ | filter (lang(?itemLabel) = "en"). | ||
+ | # is proceedings from | ||
?item ^wdt:P4745 ?value. | ?item ^wdt:P4745 ?value. | ||
− | } GROUP by ?item | + | } GROUP by ?item ?itemLabel |
+ | |||
HAVING (COUNT (?value) > 1) | HAVING (COUNT (?value) > 1) | ||
ORDER BY DESC(?count) | ORDER BY DESC(?count) | ||
</source> | </source> | ||
− | + | [https://query.wikidata.org//#%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20is%20proceedings%20from%28P4745%29%20https%3A//www.wikidata.org/wiki/Property%3AP4745%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20is%20proceedings%20from%0A%20%20%3Fitem%20%5Ewdt%3AP4745%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0AHAVING%20%28COUNT%20%28%3Fvalue%29%20%3E%201%29%0AORDER%20BY%20DESC%28%3Fcount%29 try it!] | |
=== result === | === result === | ||
{| class="wikitable" style="text-align: left;" | {| class="wikitable" style="text-align: left;" | ||
|+ <!-- caption --> | |+ <!-- caption --> | ||
|- | |- | ||
− | ! item !! align="right"| count | + | ! item !! itemLabel !! align="right"| count |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q48027931 || align="right"| 4 | + | | http://www.wikidata.org/entity/Q48027931 || The 18th International Semantic Web Conference || align="right"| 4 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q47912910 || align="right"| 3 | + | | http://www.wikidata.org/entity/Q47912910 || The 16th International Semantic Web Conference || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q48025514 || align="right"| 3 | + | | http://www.wikidata.org/entity/Q48025514 || The 15th International Semantic Web Conference || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/Q77250365 || align="right"| 3 | + | | http://www.wikidata.org/entity/Q77250365 || The 19th International Semantic web Conference || align="right"| 3 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q30090453 || ESWC 2017 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q47455387 || The 17th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48025651 || The 14th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48025840 || The 13th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48025934 || The 12th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48026033 || The 11th International Semantic Web Conference || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48612170 || 9th International Conference on Social Informatics || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48619834 || 56th Annual Meeting of the Association for Computational Linguistics || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q48910401 || The Web Conference 2018 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q50290385 || ESWC 2018 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q55497473 || European Conference on Computer Vision 2010 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q59620529 || ESWC 2019 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q59917009 || SEMANTiCS 2019 || align="right"| 2 |
|- | |- | ||
− | | http://www.wikidata.org/entity/ | + | | http://www.wikidata.org/entity/Q59917887 || ESWC 2016 || align="right"| 2 |
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q68277652 || DC-2008 || align="right"| 2 | ||
+ | |- | ||
+ | | http://www.wikidata.org/entity/Q82290350 || The 2020 Conference on Empirical Methods in Natural Language Processing || align="right"| 2 | ||
+ | |} | ||
+ | == non tabular entries for academic conference/WikiCFP event ID:frequencies == | ||
+ | |||
+ | === query === | ||
+ | <source lang='sparql'> | ||
+ | SELECT ?count (COUNT(?count) AS ?frequency) WHERE { | ||
+ | |||
+ | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
+ | # with the given WikiCFP event ID(P5124) https://www.wikidata.org/wiki/Property:P5124 | ||
+ | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) | ||
+ | WHERE | ||
+ | { | ||
+ | # instance of academic conference | ||
+ | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
+ | # WikiCFP event ID | ||
+ | ?item wdt:P5124 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
+ | } | ||
+ | GROUP BY ?count | ||
+ | ORDER BY DESC (?frequency) | ||
+ | </source> | ||
+ | |||
+ | [https://query.wikidata.org//#SELECT%20%3Fcount%20%28COUNT%28%3Fcount%29%20AS%20%3Ffrequency%29%20WHERE%20%7B%0A%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20WikiCFP%20event%20ID%28P5124%29%20https%3A//www.wikidata.org/wiki/Property%3AP5124%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20WikiCFP%20event%20ID%0A%20%20%3Fitem%20wdt%3AP5124%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0A%7D%0AGROUP%20BY%20%3Fcount%0AORDER%20BY%20DESC%20%28%3Ffrequency%29 try it!] | ||
+ | === result === | ||
+ | {| class="wikitable" style="text-align: left;" | ||
+ | |+ <!-- caption --> | ||
|- | |- | ||
− | | | + | ! align="right"| count !! align="right"| frequency |
|- | |- | ||
− | | | + | | align="right"| 1 || align="right"| 98 |
|} | |} | ||
+ | == non tabular entries for academic conference/WikiCFP event ID:records == | ||
+ | |||
+ | === query === | ||
+ | <source lang='sparql'> | ||
+ | |||
+ | # Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items | ||
+ | # with the given WikiCFP event ID(P5124) https://www.wikidata.org/wiki/Property:P5124 | ||
+ | SELECT ?item ?itemLabel (COUNT (?value) AS ?count) | ||
+ | WHERE | ||
+ | { | ||
+ | # instance of academic conference | ||
+ | ?item wdt:P31 wd:Q2020153. | ||
+ | ?item rdfs:label ?itemLabel. | ||
+ | filter (lang(?itemLabel) = "en"). | ||
+ | # WikiCFP event ID | ||
+ | ?item wdt:P5124 ?value. | ||
+ | } GROUP by ?item ?itemLabel | ||
+ | |||
+ | HAVING (COUNT (?value) > 1) | ||
+ | ORDER BY DESC(?count) | ||
+ | </source> | ||
+ | |||
+ | [https://query.wikidata.org//#%0A%23%20Count%20all%20academic%20conference%28Q2020153%29%20https%3A//www.wikidata.org/wiki/Q2020153%20items%0A%23%20with%20the%20given%20WikiCFP%20event%20ID%28P5124%29%20https%3A//www.wikidata.org/wiki/Property%3AP5124%20%0ASELECT%20%3Fitem%20%3FitemLabel%20%28COUNT%20%28%3Fvalue%29%20AS%20%3Fcount%29%0AWHERE%0A%7B%0A%20%20%23%20instance%20of%20academic%20conference%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ2020153.%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20filter%20%28lang%28%3FitemLabel%29%20%3D%20%22en%22%29.%0A%20%20%23%20WikiCFP%20event%20ID%0A%20%20%3Fitem%20wdt%3AP5124%20%3Fvalue.%0A%7D%20GROUP%20by%20%3Fitem%20%3FitemLabel%0A%0AHAVING%20%28COUNT%20%28%3Fvalue%29%20%3E%201%29%0AORDER%20BY%20DESC%28%3Fcount%29 try it!] | ||
+ | === result === | ||
+ | [[Category:Truly Tabular RDF]] |
Latest revision as of 10:44, 27 July 2022
# Count all items with the given
# type academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153
SELECT (COUNT (DISTINCT ?item) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
}
7514
non tabular entries for academic conference/country:frequencies
query
SELECT ?count (COUNT(?count) AS ?frequency) WHERE {
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given country(P17) https://www.wikidata.org/wiki/Property:P17
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# country
?item wdt:P17 ?value.
} GROUP by ?item ?itemLabel
}
GROUP BY ?count
ORDER BY DESC (?frequency)
result
count | frequency |
---|---|
1 | 7077 |
non tabular entries for academic conference/country:records
query
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given country(P17) https://www.wikidata.org/wiki/Property:P17
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# country
?item wdt:P17 ?value.
} GROUP by ?item ?itemLabel
HAVING (COUNT (?value) > 1)
ORDER BY DESC(?count)
result
non tabular entries for academic conference/part of the series:frequencies
query
SELECT ?count (COUNT(?count) AS ?frequency) WHERE {
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given part of the series(P179) https://www.wikidata.org/wiki/Property:P179
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# part of the series
?item wdt:P179 ?value.
} GROUP by ?item ?itemLabel
}
GROUP BY ?count
ORDER BY DESC (?frequency)
result
count | frequency |
---|---|
1 | 7120 |
2 | 15 |
3 | 4 |
non tabular entries for academic conference/part of the series:records
query
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given part of the series(P179) https://www.wikidata.org/wiki/Property:P179
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# part of the series
?item wdt:P179 ?value.
} GROUP by ?item ?itemLabel
HAVING (COUNT (?value) > 1)
ORDER BY DESC(?count)
result
item | itemLabel | count |
---|---|---|
http://www.wikidata.org/entity/Q105978864 | International Joint Conference SOCO'13-CISIS'13-ICEUTE'13 - Salamanca, Spain, September 11th-13th, 2013 | 3 |
http://www.wikidata.org/entity/Q105979018 | Intelligent Computer Mathematics - 11th International Conference AISC, 19th Symposium Calculemus, 5th International Workshop DML, 11th International Conference MKM, Systems and Projects, Held as Part of CICM 2012, Bremen, Germany, July 8-13, 2012 | 3 |
http://www.wikidata.org/entity/Q105979324 | International Joint Conference SOCO'16-CISIS'16-ICEUTE'16 - San Sebastián, Spain, October 19th-21st, 2016 | 3 |
http://www.wikidata.org/entity/Q105983704 | International Joint Conference SOCO'18-CISIS'18-ICEUTE'18 - San Sebastián, Spain, June 6-8, 2018 | 3 |
http://www.wikidata.org/entity/Q63430346 | 5. Solvay Conference on Physics | 2 |
http://www.wikidata.org/entity/Q48026807 | The 6th International Semantic Web Conference and the 2nd Asian Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q102352145 | ACL '98/COLING '98 | 2 |
http://www.wikidata.org/entity/Q105983692 | ACM India Joint International Conference on Data Science and Management of Data, COMAD/CODS 2019, Kolkata, India, January 3-5, 2019 | 2 |
http://www.wikidata.org/entity/Q105983693 | Software Engineering - ESEC/FSE'99, 7th European Software Engineering Conference, Held Jointly with the 7th ACM SIGSOFT Symposium on the Foundations of Software Engineering, Toulouse, France, September 1999 | 2 |
http://www.wikidata.org/entity/Q105983696 | IBERAMIA-SBIA 2006, 2nd International Joint Conference, 10th Ibero-American Conference on AI, 18th Brazilian AI Symposium, Ribeirão Preto, Brazil, October 23-27, 2006 | 2 |
http://www.wikidata.org/entity/Q105983698 | People and Computers XV - Interaction without Frontiers, Joint HCI 2001 and IHM 2001, Lille, France, September 10-14, 2001 | 2 |
http://www.wikidata.org/entity/Q105983700 | TAPSOFT'95: Theory and Practice of Software Development, 6th International Joint Conference CAAP/FASE, Aarhus, Denmark, May 22-26, 1995 | 2 |
http://www.wikidata.org/entity/Q105983708 | Applications of Declarative Programming and Knowledge Management - 19th International Conference, INAP 2011, and 25th Workshop on Logic Programming, WLP 2011, Vienna, Austria, September 28-30, 2011 | 2 |
http://www.wikidata.org/entity/Q105983709 | Engineering Applications of Neural Networks - 12th INNS EANN-SIG International Conference, EANN 2011 and 7th IFIP WG 12.5 International Conference, AIAI 2011, Corfu, Greece, September 15-18, 2011 | 2 |
http://www.wikidata.org/entity/Q105983712 | Intelligent Computer Mathematics - MKM, Calculemus, DML, and Systems and Projects 2013, Held as Part of CICM 2013, Bath, UK, July 8-12, 2013 | 2 |
http://www.wikidata.org/entity/Q105983713 | Intelligent Computer Mathematics, 16th Symposium, Calculemus 2009, 8th International Conference, MKM 2009, Held as Part of CICM 2009, Grand Bend, Canada, July 6-12, 2009 | 2 |
http://www.wikidata.org/entity/Q105983715 | Serious Games - Second Joint International Conference, JCSG 2016, Brisbane, QLD, Australia, September 26-27, 2016 | 2 |
http://www.wikidata.org/entity/Q105983716 | Social, Cultural, and Behavioral Modeling, 9th International Conference, SBP-BRiMS 2016, Washington, DC, USA, June 28 - July 1, 2016 | 2 |
http://www.wikidata.org/entity/Q105983926 | International Joint Conference - CISIS'15 and ICEUTE'15, 8th Computational Intelligence in Security for Information Systems Conference / 6th EUropean Transnational Education Conference, Burgos, Spain, 15-17 June, 2015 | 2 |
non tabular entries for academic conference/VIAF ID:frequencies
query
SELECT ?count (COUNT(?count) AS ?frequency) WHERE {
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given VIAF ID(P214) https://www.wikidata.org/wiki/Property:P214
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# VIAF ID
?item wdt:P214 ?value.
} GROUP by ?item ?itemLabel
}
GROUP BY ?count
ORDER BY DESC (?frequency)
result
count | frequency |
---|---|
1 | 2092 |
2 | 3 |
3 | 1 |
non tabular entries for academic conference/VIAF ID:records
query
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given VIAF ID(P214) https://www.wikidata.org/wiki/Property:P214
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# VIAF ID
?item wdt:P214 ?value.
} GROUP by ?item ?itemLabel
HAVING (COUNT (?value) > 1)
ORDER BY DESC(?count)
result
item | itemLabel | count |
---|---|---|
http://www.wikidata.org/entity/Q105979018 | Intelligent Computer Mathematics - 11th International Conference AISC, 19th Symposium Calculemus, 5th International Workshop DML, 11th International Conference MKM, Systems and Projects, Held as Part of CICM 2012, Bremen, Germany, July 8-13, 2012 | 3 |
http://www.wikidata.org/entity/Q97626306 | Second Postgraduate Conference in Studies of Antiquity and Middle Ages | 2 |
http://www.wikidata.org/entity/Q105983693 | Software Engineering - ESEC/FSE'99, 7th European Software Engineering Conference, Held Jointly with the 7th ACM SIGSOFT Symposium on the Foundations of Software Engineering, Toulouse, France, September 1999 | 2 |
http://www.wikidata.org/entity/Q105983696 | IBERAMIA-SBIA 2006, 2nd International Joint Conference, 10th Ibero-American Conference on AI, 18th Brazilian AI Symposium, Ribeirão Preto, Brazil, October 23-27, 2006 | 2 |
non tabular entries for academic conference/GND ID:frequencies
query
SELECT ?count (COUNT(?count) AS ?frequency) WHERE {
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given GND ID(P227) https://www.wikidata.org/wiki/Property:P227
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# GND ID
?item wdt:P227 ?value.
} GROUP by ?item ?itemLabel
}
GROUP BY ?count
ORDER BY DESC (?frequency)
result
count | frequency |
---|---|
1 | 3043 |
2 | 4 |
3 | 2 |
non tabular entries for academic conference/GND ID:records
query
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given GND ID(P227) https://www.wikidata.org/wiki/Property:P227
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# GND ID
?item wdt:P227 ?value.
} GROUP by ?item ?itemLabel
HAVING (COUNT (?value) > 1)
ORDER BY DESC(?count)
result
item | itemLabel | count |
---|---|---|
http://www.wikidata.org/entity/Q105979018 | Intelligent Computer Mathematics - 11th International Conference AISC, 19th Symposium Calculemus, 5th International Workshop DML, 11th International Conference MKM, Systems and Projects, Held as Part of CICM 2012, Bremen, Germany, July 8-13, 2012 | 3 |
http://www.wikidata.org/entity/Q101208370 | International Organization for the Study of the Old Testament. Congress | 3 |
http://www.wikidata.org/entity/Q105983693 | Software Engineering - ESEC/FSE'99, 7th European Software Engineering Conference, Held Jointly with the 7th ACM SIGSOFT Symposium on the Foundations of Software Engineering, Toulouse, France, September 1999 | 2 |
http://www.wikidata.org/entity/Q105983696 | IBERAMIA-SBIA 2006, 2nd International Joint Conference, 10th Ibero-American Conference on AI, 18th Brazilian AI Symposium, Ribeirão Preto, Brazil, October 23-27, 2006 | 2 |
http://www.wikidata.org/entity/Q105983926 | International Joint Conference - CISIS'15 and ICEUTE'15, 8th Computational Intelligence in Security for Information Systems Conference / 6th EUropean Transnational Education Conference, Burgos, Spain, 15-17 June, 2015 | 2 |
http://www.wikidata.org/entity/Q107177033 | NYU Symposium on Decision Support Systems | 2 |
non tabular entries for academic conference/location:frequencies
query
SELECT ?count (COUNT(?count) AS ?frequency) WHERE {
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given location(P276) https://www.wikidata.org/wiki/Property:P276
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# location
?item wdt:P276 ?value.
} GROUP by ?item ?itemLabel
}
GROUP BY ?count
ORDER BY DESC (?frequency)
result
count | frequency |
---|---|
1 | 7180 |
2 | 24 |
3 | 4 |
14 | 1 |
non tabular entries for academic conference/location:records
query
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given location(P276) https://www.wikidata.org/wiki/Property:P276
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# location
?item wdt:P276 ?value.
} GROUP by ?item ?itemLabel
HAVING (COUNT (?value) > 1)
ORDER BY DESC(?count)
result
item | itemLabel | count |
---|---|---|
http://www.wikidata.org/entity/Q8035745 | World Forestry Congress | 14 |
http://www.wikidata.org/entity/Q1654334 | Conference for Digital Data Transmission in Amateur Radio | 3 |
http://www.wikidata.org/entity/Q28052808 | 2017 Conference on Empirical Methods in Natural Language Processing | 3 |
http://www.wikidata.org/entity/Q47912910 | The 16th International Semantic Web Conference | 3 |
http://www.wikidata.org/entity/Q94182434 | World Ayahuasca Conference | 3 |
http://www.wikidata.org/entity/Q59558038 | QCMC 2006 | 2 |
http://www.wikidata.org/entity/Q47501061 | 2nd International Conference on Chemical Structures | 2 |
http://www.wikidata.org/entity/Q47455387 | The 17th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q59558053 | Quantum Aspects of Optical Communication 1990 | 2 |
http://www.wikidata.org/entity/Q48025514 | The 15th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48025934 | The 12th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48026643 | The 7th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48026807 | The 6th International Semantic Web Conference and the 2nd Asian Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48026926 | The 5th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q90027034 | Answers for Darwin | 2 |
http://www.wikidata.org/entity/Q64955764 | 42nd European Conference on Information Retrieval | 2 |
http://www.wikidata.org/entity/Q96749264 | A conference on Roman law : the future of obligations | 2 |
http://www.wikidata.org/entity/Q56683535 | 63. GMDS Annual Meeting 2018 | 2 |
http://www.wikidata.org/entity/Q56872346 | 8th International SWAT4LS conference | 2 |
http://www.wikidata.org/entity/Q59555142 | QCMC 2016 | 2 |
http://www.wikidata.org/entity/Q59555499 | QCMC 2010 | 2 |
http://www.wikidata.org/entity/Q76721517 | Twentieth Conference on Neural Information Processing Systems | 2 |
http://www.wikidata.org/entity/Q73025763 | Neural Information Processing Systems 2004 | 2 |
http://www.wikidata.org/entity/Q104866279 | XXIV Jornadas de Paleontología | 2 |
http://www.wikidata.org/entity/Q104903952 | XXVIII Jornadas de Paleontología | 2 |
http://www.wikidata.org/entity/Q106068709 | Digital Libraries and Archives - 7th Italian Research Conference, IRCDL 2011, Pisa, Italy, January 20-21, 2011 | 2 |
http://www.wikidata.org/entity/Q106336297 | ICEIS 2002, 4st International Conference on Enterprise Information Systems, Ciudad Real, Spain, April 2-6, 2002 | 2 |
http://www.wikidata.org/entity/Q106443465 | Discrete Geometry, Combinatorics and Graph Theory, 9th China-Japan Conference, CJCDGCGT 2005, Tianjin, China, November 18-20, 2005, Xi'an, China, November 22-24, 2005 | 2 |
http://www.wikidata.org/entity/Q108282854 | 23rd International Conference on Theory and Practice of Digital Libraries | 2 |
non tabular entries for academic conference/start time:frequencies
query
SELECT ?count (COUNT(?count) AS ?frequency) WHERE {
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given start time(P580) https://www.wikidata.org/wiki/Property:P580
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# start time
?item wdt:P580 ?value.
} GROUP by ?item ?itemLabel
}
GROUP BY ?count
ORDER BY DESC (?frequency)
result
count | frequency |
---|---|
1 | 6914 |
2 | 2 |
non tabular entries for academic conference/start time:records
query
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given start time(P580) https://www.wikidata.org/wiki/Property:P580
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# start time
?item wdt:P580 ?value.
} GROUP by ?item ?itemLabel
HAVING (COUNT (?value) > 1)
ORDER BY DESC(?count)
result
item | itemLabel | count |
---|---|---|
http://www.wikidata.org/entity/Q59979937 | 5th International Conference on Computational Social Science | 2 |
http://www.wikidata.org/entity/Q100964080 | The Sixth International Conference on Knowledge Capture | 2 |
non tabular entries for academic conference/end time:frequencies
query
SELECT ?count (COUNT(?count) AS ?frequency) WHERE {
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given end time(P582) https://www.wikidata.org/wiki/Property:P582
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# end time
?item wdt:P582 ?value.
} GROUP by ?item ?itemLabel
}
GROUP BY ?count
ORDER BY DESC (?frequency)
result
count | frequency |
---|---|
1 | 6909 |
2 | 3 |
non tabular entries for academic conference/end time:records
query
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given end time(P582) https://www.wikidata.org/wiki/Property:P582
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# end time
?item wdt:P582 ?value.
} GROUP by ?item ?itemLabel
HAVING (COUNT (?value) > 1)
ORDER BY DESC(?count)
result
item | itemLabel | count |
---|---|---|
http://www.wikidata.org/entity/Q59979937 | 5th International Conference on Computational Social Science | 2 |
http://www.wikidata.org/entity/Q62250062 | 2019 Conference on Empirical Methods in Natural Language Processing and 9th International Joint Conference on Natural Language Processing | 2 |
http://www.wikidata.org/entity/Q106331820 | AIME 89, Second European Conference on Artificial Intelligence in Medicine, London, UK, August 29th-31st 1989 | 2 |
non tabular entries for academic conference/official website:frequencies
query
SELECT ?count (COUNT(?count) AS ?frequency) WHERE {
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given official website(P856) https://www.wikidata.org/wiki/Property:P856
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# official website
?item wdt:P856 ?value.
} GROUP by ?item ?itemLabel
}
GROUP BY ?count
ORDER BY DESC (?frequency)
result
count | frequency |
---|---|
1 | 586 |
2 | 9 |
3 | 1 |
non tabular entries for academic conference/official website:records
query
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given official website(P856) https://www.wikidata.org/wiki/Property:P856
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# official website
?item wdt:P856 ?value.
} GROUP by ?item ?itemLabel
HAVING (COUNT (?value) > 1)
ORDER BY DESC(?count)
result
item | itemLabel | count |
---|---|---|
http://www.wikidata.org/entity/Q94182434 | World Ayahuasca Conference | 3 |
http://www.wikidata.org/entity/Q62250062 | 2019 Conference on Empirical Methods in Natural Language Processing and 9th International Joint Conference on Natural Language Processing | 2 |
http://www.wikidata.org/entity/Q56101203 | 2018 Conference on Empirical Methods in Natural Language Processing | 2 |
http://www.wikidata.org/entity/Q56373190 | PIDapalooza 2019 | 2 |
http://www.wikidata.org/entity/Q56761651 | Visuals and Analytics that Matter | 2 |
http://www.wikidata.org/entity/Q57171737 | 20th Annual Meeting of the Special Interest Group on Discourse and Dialogue | 2 |
http://www.wikidata.org/entity/Q54366589 | The 14th Conference of the European Chapter of the Association for Computational Linguistics | 2 |
http://www.wikidata.org/entity/Q47486856 | PIDapalooza 2016 | 2 |
http://www.wikidata.org/entity/Q28052808 | 2017 Conference on Empirical Methods in Natural Language Processing | 2 |
http://www.wikidata.org/entity/Q47486859 | PIDapalooza 2018 | 2 |
non tabular entries for academic conference/main subject:frequencies
query
SELECT ?count (COUNT(?count) AS ?frequency) WHERE {
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given main subject(P921) https://www.wikidata.org/wiki/Property:P921
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# main subject
?item wdt:P921 ?value.
} GROUP by ?item ?itemLabel
}
GROUP BY ?count
ORDER BY DESC (?frequency)
result
count | frequency |
---|---|
1 | 1722 |
2 | 131 |
3 | 23 |
4 | 2 |
7 | 2 |
5 | 1 |
9 | 1 |
non tabular entries for academic conference/main subject:records
query
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given main subject(P921) https://www.wikidata.org/wiki/Property:P921
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# main subject
?item wdt:P921 ?value.
} GROUP by ?item ?itemLabel
HAVING (COUNT (?value) > 1)
ORDER BY DESC(?count)
result
item | itemLabel | count |
---|---|---|
http://www.wikidata.org/entity/Q1654334 | Conference for Digital Data Transmission in Amateur Radio | 9 |
http://www.wikidata.org/entity/Q62204896 | Researcher meets Curator | 7 |
http://www.wikidata.org/entity/Q108654909 | TurkLang | 7 |
http://www.wikidata.org/entity/Q99430301 | Africa knows! | 5 |
http://www.wikidata.org/entity/Q75533882 | Open Science in Action | 4 |
http://www.wikidata.org/entity/Q104842040 | XIX Jornadas de Paleontología | 4 |
http://www.wikidata.org/entity/Q88860125 | Graph Technologies in the Humanities 2020 | 3 |
http://www.wikidata.org/entity/Q88864270 | Graph Technologies in the Humanities 2019 | 3 |
http://www.wikidata.org/entity/Q56235977 | 10th International SWAT4HCLS conference | 3 |
http://www.wikidata.org/entity/Q106244172 | Augmented Reality, Virtual Reality, and Computer Graphics - 7th International Conference, AVR 2020, Lecce, Italy, September 7-10, 2020 | 3 |
http://www.wikidata.org/entity/Q47449692 | 14th International Symposium on Open Collaboration | 3 |
http://www.wikidata.org/entity/Q59264323 | SWIB19 | 3 |
http://www.wikidata.org/entity/Q47904349 | Conferência Luso-Brasileira sobre Acesso Aberto | 3 |
http://www.wikidata.org/entity/Q99098582 | Port Towns of Gujarat | 3 |
http://www.wikidata.org/entity/Q101231219 | SWIB20 | 3 |
http://www.wikidata.org/entity/Q104723376 | III Jornadas de Paleontología | 3 |
http://www.wikidata.org/entity/Q106245243 | MIPPR 2017: Remote Sensing Image Processing, Geographic Information Systems, and Other Applications, Tenth International Symposium on Multispectral Image Processing and Pattern Recognition (MIPPR2017), Xiangyang, China, 28-29 October 2017 | 3 |
http://www.wikidata.org/entity/Q106243684 | Machine Learning and Data Mining in Pattern Recognition, 6th International Conference, MLDM 2009, Leipzig, Germany, July 23-25, 2009 | 3 |
http://www.wikidata.org/entity/Q104865385 | XXI Jornadas de Paleontología | 3 |
http://www.wikidata.org/entity/Q104866013 | XXIII Jornadas de Paleontología | 3 |
http://www.wikidata.org/entity/Q104883066 | XXV Jornadas de Paleontología | 3 |
http://www.wikidata.org/entity/Q104903902 | XXVII Jornadas de Paleontología | 3 |
http://www.wikidata.org/entity/Q104903952 | XXVIII Jornadas de Paleontología | 3 |
http://www.wikidata.org/entity/Q104904073 | XXXI Jornadas de Paleontología | 3 |
http://www.wikidata.org/entity/Q104904110 | XXXII Jornadas de Paleontología | 3 |
http://www.wikidata.org/entity/Q104910622 | XXXIV Jornadas de Paleontología | 3 |
http://www.wikidata.org/entity/Q104949395 | XXXV Jornadas de Paleontología | 3 |
http://www.wikidata.org/entity/Q108805555 | WissKom2022 | 3 |
http://www.wikidata.org/entity/Q109807172 | SWIB21 | 3 |
http://www.wikidata.org/entity/Q60922709 | 1st Iberoamerican Knowledge Graphs and Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q61054372 | The 57th Annual Meeting of the Association for Computational Linguistics | 2 |
http://www.wikidata.org/entity/Q63828174 | Persistent Identifiers in biodiversity data life cycle | 2 |
http://www.wikidata.org/entity/Q56192254 | 2010 Caenorhabditis elegans Neurobiology Meeting | 2 |
http://www.wikidata.org/entity/Q56876300 | Research Output & Impact Analyzed and Visualized: Concluding Conference | 2 |
http://www.wikidata.org/entity/Q106244257 | Computer Games: AI, Animation, Mobile, Multimedia, Educational and Serious Games , CGAMES 2015, Louisville, KY, USA, July 27-29, 2015 | 2 |
http://www.wikidata.org/entity/Q106244323 | Data Mining and Big Data - Second International Conference, DMBD 2017, Fukuoka, Japan, July 27 - August 1, 2017 | 2 |
http://www.wikidata.org/entity/Q42740247 | Biographical Data in a Digital World 2017 | 2 |
http://www.wikidata.org/entity/Q47259608 | Thirty-second Annual Conference on Neural Information Processing Systems | 2 |
http://www.wikidata.org/entity/Q47450029 | 21st International Conference on Artificial Intelligence and Statistics | 2 |
http://www.wikidata.org/entity/Q47455387 | The 17th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q57083744 | Telling Her Story: Women's History, Heritage and the Built Environment | 2 |
http://www.wikidata.org/entity/Q57171737 | 20th Annual Meeting of the Special Interest Group on Discourse and Dialogue | 2 |
http://www.wikidata.org/entity/Q58485225 | The 7th conference of the Scandinavian Association for Language and Cognition | 2 |
http://www.wikidata.org/entity/Q106244367 | Discrete Mathematics and Theoretical Computer Science, 4th International Conference, DMTCS 2003, Dijon, France, July 7-12, 2003 | 2 |
http://www.wikidata.org/entity/Q106244551 | 13th International Joint Conference on Computer Vision, Imaging and Computer Graphics Theory and Applications (VISIGRAPP 2018) - HUCAPP, Funchal, Madeira, Portugal, January 27-29, 2018 | 2 |
http://www.wikidata.org/entity/Q47501293 | Third International Conference on Chemical Structures | 2 |
http://www.wikidata.org/entity/Q47912910 | The 16th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48025514 | The 15th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48025651 | The 14th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48025840 | The 13th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48025934 | The 12th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48026033 | The 11th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48026129 | The 10th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48026260 | The 9th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48026503 | The 8th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48026643 | The 7th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48026807 | The 6th International Semantic Web Conference and the 2nd Asian Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48027931 | The 18th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48619834 | 56th Annual Meeting of the Association for Computational Linguistics | 2 |
http://www.wikidata.org/entity/Q50706744 | 10th International Conference on Ecological Informatics | 2 |
http://www.wikidata.org/entity/Q53627647 | 4th Dutch Bioinformatics & Systems Biology Conference | 2 |
http://www.wikidata.org/entity/Q19231616 | Science and nonviolence (conference) - French | 2 |
http://www.wikidata.org/entity/Q28052972 | Thirty-first Conference on Neural Information Processing Systems | 2 |
http://www.wikidata.org/entity/Q67080838 | Women, Status and Power in Medieval Society | 2 |
http://www.wikidata.org/entity/Q67080999 | Grave Concerns: Death, Landscape, and Locality in Medieval Society | 2 |
http://www.wikidata.org/entity/Q70334179 | On Bees and Humans | 2 |
http://www.wikidata.org/entity/Q70971538 | The What, How and Why of Open Science | 2 |
http://www.wikidata.org/entity/Q71045244 | Eighth International Conference on Learning Representations | 2 |
http://www.wikidata.org/entity/Q71385296 | Medical Education Informatics International Conference 2012 | 2 |
http://www.wikidata.org/entity/Q72799678 | Digital Skills for Data Intensive Science | 2 |
http://www.wikidata.org/entity/Q106244677 | Sixth International Conference on Innovative Mobile and Internet Services in Ubiquitous Computing, IMIS 2012, Palermo, Italy, July 4-6, 2012 | 2 |
http://www.wikidata.org/entity/Q106244729 | International Conference on Internet Computing, IC '03, Las Vegas, Nevada, USA, June 23-26, 2003 | 2 |
http://www.wikidata.org/entity/Q106244730 | International Conference on Internet Computing, IC 2002, Las Vegas, Nevada, USA, June 24-27, 2002 | 2 |
http://www.wikidata.org/entity/Q106244733 | Internet of Things (IoT) Technologies for HealthCare - 4th International Conference, HealthyIoT 2017, Angers, France, October 24-25, 2017 | 2 |
http://www.wikidata.org/entity/Q106244769 | 25th International Conference on Mechatronics and Machine Vision in Practice, M2VIP 2018, Stuttgart, Germany, November 20-22, 2018 | 2 |
http://www.wikidata.org/entity/Q106244849 | 12th IAPR International Conference on Pattern Recognition, Conference A: Computer Vision & Image Processing, ICPR 1994, Jerusalem, Israel, 9-13 October, 1994 | 2 |
http://www.wikidata.org/entity/Q65055454 | 'The Long Black Death': New Perspectives | 2 |
http://www.wikidata.org/entity/Q106304527 | 23rd International ACM Conference on 3D Web Technology, Web3D 2018, Poznań, Poland, June 20-22, 2018 | 2 |
http://www.wikidata.org/entity/Q106245030 | Ubiquitous Computing and Ambient Intelligence. Sensing, Processing, and Using Environmental Information - 9th International Conference, UCAmI 2015, Puerto Varas, Chile, December 1-4, 2015 | 2 |
http://www.wikidata.org/entity/Q106245042 | 31st International Conference on VLSI Design and 17th International Conference on Embedded Systems, VLSID 2018, Pune, India, January 6-10, 2018 | 2 |
http://www.wikidata.org/entity/Q96749264 | A conference on Roman law : the future of obligations | 2 |
http://www.wikidata.org/entity/Q98602742 | Gender and Punishment | 2 |
http://www.wikidata.org/entity/Q98605430 | Gender, Time and Memory | 2 |
http://www.wikidata.org/entity/Q98837528 | After Timur Came : Multiple Spaces of Cultural Production and Circulation in Fifteenth-Century North India | 2 |
http://www.wikidata.org/entity/Q106232306 | 12th International Conference on Computer Graphics Theory and Applications (GRAPP 2017), Porto, Portugal, February 27 - March 1, 2017 | 2 |
http://www.wikidata.org/entity/Q106232311 | 13th International Conference on Computer Vision Theory and Applications (VISAPP 2018), Funchal, Madeira, Portugal, January 27-29, 2018 | 2 |
http://www.wikidata.org/entity/Q106232312 | 12th International Conference on Computer Vision Theory and Applications (VISAPP 2017), Porto, Portugal, February 27 - March 1, 2017 | 2 |
http://www.wikidata.org/entity/Q106232317 | 8th International Conference on Information Visualization Theory and Applications (IVAPP 2017), Porto, Portugal, February 27 - March 1, 2017 | 2 |
http://www.wikidata.org/entity/Q106232318 | 12th International Joint Conference on Computer Vision, Imaging and Computer Graphics Theory and Applications (VISIGRAPP 2017), Porto, Portugal, February 27 - March 1, 2017 | 2 |
http://www.wikidata.org/entity/Q106242554 | HT'11, 22nd ACM Conference on Hypertext and Hypermedia, Eindhoven, The Netherlands, June 6-9, 2011 | 2 |
http://www.wikidata.org/entity/Q104246429 | World Congress of African Linguistics | 2 |
http://www.wikidata.org/entity/Q104722655 | I Jornadas de Paleontología | 2 |
http://www.wikidata.org/entity/Q104722990 | II Jornadas de Paleontología | 2 |
http://www.wikidata.org/entity/Q104723700 | IV Jornadas de Paleontología | 2 |
http://www.wikidata.org/entity/Q104758795 | V Jornadas de Paleontología | 2 |
http://www.wikidata.org/entity/Q104758823 | VI Jornadas de Paleontología | 2 |
http://www.wikidata.org/entity/Q104758855 | VII Jornadas de Paleontología | 2 |
http://www.wikidata.org/entity/Q106243128 | Algebra and Coalgebra in Computer Science - 4th International Conference, CALCO 2011, Winchester, UK, August 30 - September 2, 2011 | 2 |
http://www.wikidata.org/entity/Q106243129 | Algebra and Coalgebra in Computer Science, Third International Conference, CALCO 2009, Udine, Italy, September 7-10, 2009 | 2 |
http://www.wikidata.org/entity/Q106243130 | Algebra and Coalgebra in Computer Science, Second International Conference, CALCO 2007, Bergen, Norway, August 20-24, 2007 | 2 |
http://www.wikidata.org/entity/Q106243131 | Algebra and Coalgebra in Computer Science: First International Conference, CALCO 2005, Swansea, UK, September 3-6, 2005 | 2 |
http://www.wikidata.org/entity/Q106243157 | fourth international conference on Functional programming languages and computer architecture, FPCA 1989, London, UK, September 11-13, 1989 | 2 |
http://www.wikidata.org/entity/Q106243318 | Energy Minimization Methods in Computer Vision and Pattern Recognition, 6th International Conference, EMMCVPR 2007, Ezhou, China, August 27-29, 2007 | 2 |
http://www.wikidata.org/entity/Q106243335 | Virtual Reality and Augmented Reality - 16th EuroVR International Conference, EuroVR 2019, Tallinn, Estonia, October 23-25, 2019 | 2 |
http://www.wikidata.org/entity/Q106243336 | Virtual Reality and Augmented Reality - 15th EuroVR International Conference, EuroVR 2018, London, UK, October 22-23, 2018 | 2 |
http://www.wikidata.org/entity/Q106243590 | 2018 Formal Methods in Computer Aided Design, FMCAD 2018, Austin, TX, USA, October 30 - November 2, 2018 | 2 |
http://www.wikidata.org/entity/Q106243591 | Formal Methods in Computer-Aided Design, 5th International Conference, FMCAD 2004, Austin, Texas, USA, November 15-17, 2004 | 2 |
http://www.wikidata.org/entity/Q106243592 | Formal Methods in Computer-Aided Design, 4th International Conference, FMCAD 2002, Portland, OR, USA, November 6-8, 2002 | 2 |
http://www.wikidata.org/entity/Q106243593 | Formal Methods in Computer-Aided Design, Second International Conference, FMCAD '98, Palo Alto, California, USA, November 4-6, 1998 | 2 |
http://www.wikidata.org/entity/Q106243594 | Formal Methods in Computer-Aided Design, First International Conference, FMCAD '96, Palo Alto, California, USA, November 6-8, 1996 | 2 |
http://www.wikidata.org/entity/Q106245327 | VLSI Design and Test - 22nd International Symposium, VDAT 2018, Madurai, India, June 28-30, 2018 | 2 |
http://www.wikidata.org/entity/Q106245328 | VLSI Design and Test - 21st International Symposium, VDAT 2017, Roorkee, India, June 29 - July 2, 2017 | 2 |
http://www.wikidata.org/entity/Q106245329 | VLSI Design and Test, 17th International Symposium, VDAT 2013, Jaipur, India, July 27-30, 2013 | 2 |
http://www.wikidata.org/entity/Q106245364 | Bioinformatics and Biomedical Engineering - 7th International Work-Conference, IWBBIO 2019, Granada, Spain, May 8-10, 2019 | 2 |
http://www.wikidata.org/entity/Q106245365 | Bioinformatics and Biomedical Engineering - 6th International Work-Conference, IWBBIO 2018, Granada, Spain, April 25-27, 2018 | 2 |
http://www.wikidata.org/entity/Q106245366 | Bioinformatics and Biomedical Engineering - Third International Conference, IWBBIO 2015, Granada, Spain, April 15-17, 2015 | 2 |
http://www.wikidata.org/entity/Q106262706 | 2nd Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRNDL 2017), Tokyo, Japan, August 11, 2017 | 2 |
http://www.wikidata.org/entity/Q106303728 | HT'10, 21st ACM Conference on Hypertext and Hypermedia, Toronto, Ontario, Canada, June 13-16, 2010 | 2 |
http://www.wikidata.org/entity/Q106303729 | HYPERTEXT 2009, 20th ACM Conference on Hypertext and Hypermedia, Torino, Italy, June 29 - July 1, 2009 | 2 |
http://www.wikidata.org/entity/Q106303736 | BCB '20: 11th ACM International Conference on Bioinformatics, Computational Biology and Health Informatics, Virtual Event, USA, September 21-24, 2020 | 2 |
http://www.wikidata.org/entity/Q106303737 | 2018 ACM International Conference on Bioinformatics, Computational Biology, and Health Informatics, BCB 2018, Washington, DC, USA, August 29 - September 01, 2018 | 2 |
http://www.wikidata.org/entity/Q106303738 | 5th ACM Conference on Bioinformatics, Computational Biology, and Health Informatics, BCB '14, Newport Beach, California, USA, September 20-23, 2014 | 2 |
http://www.wikidata.org/entity/Q106303739 | ACM International Conference on Bioinformatics, Computational Biology and Biomedicine, BCB' 12, Orlando, FL, USA - October 08 - 10, 2012 | 2 |
http://www.wikidata.org/entity/Q106242896 | Artificial Intelligence and Computational Intelligence - 4th International Conference, AICI 2012, Chengdu, China, October 26-28, 2012 | 2 |
http://www.wikidata.org/entity/Q106242940 | Artificial Life and Computational Intelligence - Third Australasian Conference, ACALCI 2017, Geelong, VIC, Australia, January 31 - February 2, 2017 | 2 |
http://www.wikidata.org/entity/Q106243020 | People and Computers XIV - Usability or Else!, BCS HCI 2000, Sunderland, UK, September 5-8, 2000 | 2 |
http://www.wikidata.org/entity/Q106244015 | Geographic Information Science, 5th International Conference, GIScience 2008, Park City, UT, USA, September 23-26, 2008 | 2 |
http://www.wikidata.org/entity/Q106244017 | Geographic Information Science, 4th International Conference, GIScience 2006, Münster, Germany, September 20-23, 2006 | 2 |
http://www.wikidata.org/entity/Q106244025 | Twelfth International Conference on 3D Web Technology, Web3D 2007, Perugia, Italy, April 15-18, 2007 | 2 |
http://www.wikidata.org/entity/Q106244027 | Tenth International Conference on 3D Web Technology, Web3D 2005, Bangor, UK, March 29 - April 1, 2005 | 2 |
http://www.wikidata.org/entity/Q106244028 | Seventh International Conference on 3D Web Technology, Web3D 2002, Tempe Mission Palms, Tempe, Arizona, USA, February 24-28, 2002 | 2 |
http://www.wikidata.org/entity/Q106244103 | Agile Processes in Software Engineering and Extreme Programming - 12th International Conference, XP 2011, Madrid, Spain, May 10-13, 2011 | 2 |
http://www.wikidata.org/entity/Q106244105 | Agile Processes in Software Engineering and Extreme Programming, 8th International Conference, XP 2007, Como, Italy, June 18-22, 2007 | 2 |
http://www.wikidata.org/entity/Q106243727 | Formal Methods and Software Engineering - 21st International Conference on Formal Engineering Methods, ICFEM 2019, Shenzhen, China, November 5-9, 2019 | 2 |
http://www.wikidata.org/entity/Q106243728 | Formal Methods and Software Engineering - 20th International Conference on Formal Engineering Methods, ICFEM 2018, Gold Coast, QLD, Australia, November 12-16, 2018 | 2 |
http://www.wikidata.org/entity/Q106243730 | Formal Methods and Software Engineering - 13th International Conference on Formal Engineering Methods, ICFEM 2011, Durham, UK, October 26-28, 2011 | 2 |
http://www.wikidata.org/entity/Q106243731 | Formal Methods and Software Engineering, 9th International Conference on Formal Engineering Methods, ICFEM 2007, Boca Raton, FL, USA, November 14-15, 2007 | 2 |
http://www.wikidata.org/entity/Q106243732 | Formal Methods and Software Engineering, 7th International Conference on Formal Engineering Methods, ICFEM 2005, Manchester, UK, November 1-4, 2005 | 2 |
http://www.wikidata.org/entity/Q106243744 | Formal Methods and Software Engineering, 6th International Conference on Formal Engineering Methods, ICFEM 2004, Seattle, WA, USA, November 8-12, 2004 | 2 |
http://www.wikidata.org/entity/Q106243775 | 15th IEEE International Conference of System of Systems Engineering, SoSE 2020, Budapest, Hungary, June 2-4, 2020 | 2 |
http://www.wikidata.org/entity/Q106243776 | 13th Annual Conference on System of Systems Engineering, SoSE 2018, Paris, France, June 19-22, 2018 | 2 |
http://www.wikidata.org/entity/Q106243840 | 36th IEEE VLSI Test Symposium, VTS 2018, San Francisco, CA, USA, April 22-25, 2018 | 2 |
http://www.wikidata.org/entity/Q106243841 | 35th IEEE VLSI Test Symposium, VTS 2017, Las Vegas, NV, USA, April 9-12, 2017 | 2 |
http://www.wikidata.org/entity/Q106243921 | Progress in Pattern Recognition, Image Analysis, Computer Vision, and Applications - 17th Iberoamerican Congress, CIARP 2012, Buenos Aires, Argentina, September 3-6, 2012 | 2 |
http://www.wikidata.org/entity/Q106243940 | Advances in Data Mining. Medical Applications, E-Commerce, Marketing, and Theoretical Aspects, 8th Industrial Conference, ICDM 2008, Leipzig, Germany, July 16-18, 2008 | 2 |
http://www.wikidata.org/entity/Q106243971 | Integration of Constraint Programming, Artificial Intelligence, and Operations Research - 15th International Conference, CPAIOR 2018, Delft, The Netherlands, June 26-29, 2018 | 2 |
http://www.wikidata.org/entity/Q106244014 | Geographic Information Science, 6th International Conference, GIScience 2010, Zurich, Switzerland, September 14-17, 2010 | 2 |
http://www.wikidata.org/entity/Q104829424 | XIV Jornadas de Paleontología | 2 |
http://www.wikidata.org/entity/Q104831999 | XV Jornadas de Paleontología | 2 |
http://www.wikidata.org/entity/Q104832441 | XVII Jornadas de Paleontología | 2 |
http://www.wikidata.org/entity/Q104864806 | XX Jornadas de Paleontología | 2 |
http://www.wikidata.org/entity/Q104865744 | XXII Jornadas de Paleontología | 2 |
http://www.wikidata.org/entity/Q104866279 | XXIV Jornadas de Paleontología | 2 |
http://www.wikidata.org/entity/Q104904003 | XXIX Jornadas de Paleontología | 2 |
http://www.wikidata.org/entity/Q104909835 | XXXIII Jornadas de Paleontología | 2 |
http://www.wikidata.org/entity/Q106443465 | Discrete Geometry, Combinatorics and Graph Theory, 9th China-Japan Conference, CJCDGCGT 2005, Tianjin, China, November 18-20, 2005, Xi'an, China, November 22-24, 2005 | 2 |
http://www.wikidata.org/entity/Q107255073 | The measure and meaning of time in the Americas | 2 |
http://www.wikidata.org/entity/Q107315203 | Third Iberoamerican Knowledge Graph and Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q107379187 | 2nd Austrian Summit on Natural Products | 2 |
http://www.wikidata.org/entity/Q107614860 | Cultures of Cloth: The archaeology of textiles in medieval Northwest Europe | 2 |
non tabular entries for academic conference/describ'd at URL:frequencies
query
SELECT ?count (COUNT(?count) AS ?frequency) WHERE {
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given describ'd at URL(P973) https://www.wikidata.org/wiki/Property:P973
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# describ'd at URL
?item wdt:P973 ?value.
} GROUP by ?item ?itemLabel
}
GROUP BY ?count
ORDER BY DESC (?frequency)
result
count | frequency |
---|---|
1 | 6510 |
2 | 1 |
3 | 1 |
non tabular entries for academic conference/describ'd at URL:records
query
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given describ'd at URL(P973) https://www.wikidata.org/wiki/Property:P973
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# describ'd at URL
?item wdt:P973 ?value.
} GROUP by ?item ?itemLabel
HAVING (COUNT (?value) > 1)
ORDER BY DESC(?count)
result
item | itemLabel | count |
---|---|---|
http://www.wikidata.org/entity/Q106540635 | 2006 IEEE International Conference on Services Computing | 3 |
http://www.wikidata.org/entity/Q106331820 | AIME 89, Second European Conference on Artificial Intelligence in Medicine, London, UK, August 29th-31st 1989 | 2 |
non tabular entries for academic conference/title:frequencies
query
SELECT ?count (COUNT(?count) AS ?frequency) WHERE {
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given title(P1476) https://www.wikidata.org/wiki/Property:P1476
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# title
?item wdt:P1476 ?value.
} GROUP by ?item ?itemLabel
}
GROUP BY ?count
ORDER BY DESC (?frequency)
result
count | frequency |
---|---|
1 | 6700 |
2 | 10 |
3 | 8 |
non tabular entries for academic conference/title:records
query
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given title(P1476) https://www.wikidata.org/wiki/Property:P1476
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# title
?item wdt:P1476 ?value.
} GROUP by ?item ?itemLabel
HAVING (COUNT (?value) > 1)
ORDER BY DESC(?count)
result
item | itemLabel | count |
---|---|---|
http://www.wikidata.org/entity/Q63430342 | 1. Solvay Conference on Physics | 3 |
http://www.wikidata.org/entity/Q63430343 | 2. Solvay Conference on Physics | 3 |
http://www.wikidata.org/entity/Q63430344 | 3. Solvay Conference on Physics | 3 |
http://www.wikidata.org/entity/Q63430345 | 4. Solvay Conference on Physics | 3 |
http://www.wikidata.org/entity/Q63430346 | 5. Solvay Conference on Physics | 3 |
http://www.wikidata.org/entity/Q63430347 | 6. Solvay Conference on Physics | 3 |
http://www.wikidata.org/entity/Q63430348 | 7. Solvay Conference on Physics | 3 |
http://www.wikidata.org/entity/Q63430349 | 8. Solvay Conference on Physics | 3 |
http://www.wikidata.org/entity/Q76721640 | Neural Information Processing Systems 2005 | 2 |
http://www.wikidata.org/entity/Q106335329 | 2019 IEEE Vehicular Networking Conference, VNC 2019, Los Angeles, CA, USA, December 4-6, 2019 | 2 |
http://www.wikidata.org/entity/Q106335331 | 2014 IEEE Vehicular Networking Conference, VNC 2014, Paderborn, Germany, December 3-5, 2014 | 2 |
http://www.wikidata.org/entity/Q106335332 | 2013 IEEE Vehicular Networking Conference, Boston, MA, USA, December 16-18, 2013 | 2 |
http://www.wikidata.org/entity/Q106335333 | 2012 IEEE Vehicular Networking Conference, VNC 2012, Seoul, Korea (South), November 14-16, 2012 | 2 |
http://www.wikidata.org/entity/Q106077799 | Artificial Intelligence in Medicine - 15th Conference on Artificial Intelligence in Medicine, AIME 2015, Pavia, Italy, June 17-20, 2015 | 2 |
http://www.wikidata.org/entity/Q106067248 | Artificial Intelligence in Medicine - 13th Conference on Artificial Intelligence in Medicine, AIME 2011, Bled, Slovenia, July 2-6, 2011 | 2 |
http://www.wikidata.org/entity/Q106067252 | Artificial Intelligence in Medicine, 12th Conference on Artificial Intelligence in Medicine, AIME 2009, Verona, Italy, July 18-22, 2009 | 2 |
http://www.wikidata.org/entity/Q106243134 | Artificial Intelligence in Medicine, 11th Conference on Artificial Intelligence in Medicine, AIME 2007, Amsterdam, The Netherlands, July 7-11, 2007 | 2 |
http://www.wikidata.org/entity/Q106331818 | Artificial Intelligence in Medicine, 10th Conference on Artificial Intelligence in Medicine, AIME 2005, Aberdeen, UK, July 23-27, 2005 | 2 |
non tabular entries for academic conference/short name:frequencies
query
SELECT ?count (COUNT(?count) AS ?frequency) WHERE {
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given short name(P1813) https://www.wikidata.org/wiki/Property:P1813
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# short name
?item wdt:P1813 ?value.
} GROUP by ?item ?itemLabel
}
GROUP BY ?count
ORDER BY DESC (?frequency)
result
count | frequency |
---|---|
1 | 6741 |
2 | 9 |
non tabular entries for academic conference/short name:records
query
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given short name(P1813) https://www.wikidata.org/wiki/Property:P1813
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# short name
?item wdt:P1813 ?value.
} GROUP by ?item ?itemLabel
HAVING (COUNT (?value) > 1)
ORDER BY DESC(?count)
result
item | itemLabel | count |
---|---|---|
http://www.wikidata.org/entity/Q59979937 | 5th International Conference on Computational Social Science | 2 |
http://www.wikidata.org/entity/Q62250062 | 2019 Conference on Empirical Methods in Natural Language Processing and 9th International Joint Conference on Natural Language Processing | 2 |
http://www.wikidata.org/entity/Q64762682 | 12th International SWAT4HCLS conference | 2 |
http://www.wikidata.org/entity/Q69110063 | Lernen, Wissen, Daten, Analysen 2019 | 2 |
http://www.wikidata.org/entity/Q105944141 | Recent Trends in Image Processing and Pattern Recognition - Second International Conference, RTIP2R 2018, Solapur, India, December 21-22, 2018 | 2 |
http://www.wikidata.org/entity/Q56235977 | 10th International SWAT4HCLS conference | 2 |
http://www.wikidata.org/entity/Q56236021 | 11th International SWAT4HCLS conference | 2 |
http://www.wikidata.org/entity/Q106540635 | 2006 IEEE International Conference on Services Computing | 2 |
http://www.wikidata.org/entity/Q108210083 | 2016 IEEE/ACM Joint Conference on Digital Libraries | 2 |
non tabular entries for academic conference/language used:frequencies
query
SELECT ?count (COUNT(?count) AS ?frequency) WHERE {
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given language used(P2936) https://www.wikidata.org/wiki/Property:P2936
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# language used
?item wdt:P2936 ?value.
} GROUP by ?item ?itemLabel
}
GROUP BY ?count
ORDER BY DESC (?frequency)
result
count | frequency |
---|---|
1 | 84 |
2 | 3 |
non tabular entries for academic conference/language used:records
query
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given language used(P2936) https://www.wikidata.org/wiki/Property:P2936
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# language used
?item wdt:P2936 ?value.
} GROUP by ?item ?itemLabel
HAVING (COUNT (?value) > 1)
ORDER BY DESC(?count)
result
item | itemLabel | count |
---|---|---|
http://www.wikidata.org/entity/Q88860125 | Graph Technologies in the Humanities 2020 | 2 |
http://www.wikidata.org/entity/Q88864270 | Graph Technologies in the Humanities 2019 | 2 |
http://www.wikidata.org/entity/Q63686495 | Conference on Natural Language Processing 2019 | 2 |
non tabular entries for academic conference/is proceedings from:frequencies
query
SELECT ?count (COUNT(?count) AS ?frequency) WHERE {
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given is proceedings from(P4745) https://www.wikidata.org/wiki/Property:P4745
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# is proceedings from
?item ^wdt:P4745 ?value.
} GROUP by ?item ?itemLabel
}
GROUP BY ?count
ORDER BY DESC (?frequency)
result
count | frequency |
---|---|
1 | 901 |
2 | 16 |
3 | 3 |
4 | 1 |
non tabular entries for academic conference/is proceedings from:records
query
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given is proceedings from(P4745) https://www.wikidata.org/wiki/Property:P4745
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# is proceedings from
?item ^wdt:P4745 ?value.
} GROUP by ?item ?itemLabel
HAVING (COUNT (?value) > 1)
ORDER BY DESC(?count)
result
item | itemLabel | count |
---|---|---|
http://www.wikidata.org/entity/Q48027931 | The 18th International Semantic Web Conference | 4 |
http://www.wikidata.org/entity/Q47912910 | The 16th International Semantic Web Conference | 3 |
http://www.wikidata.org/entity/Q48025514 | The 15th International Semantic Web Conference | 3 |
http://www.wikidata.org/entity/Q77250365 | The 19th International Semantic web Conference | 3 |
http://www.wikidata.org/entity/Q30090453 | ESWC 2017 | 2 |
http://www.wikidata.org/entity/Q47455387 | The 17th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48025651 | The 14th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48025840 | The 13th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48025934 | The 12th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48026033 | The 11th International Semantic Web Conference | 2 |
http://www.wikidata.org/entity/Q48612170 | 9th International Conference on Social Informatics | 2 |
http://www.wikidata.org/entity/Q48619834 | 56th Annual Meeting of the Association for Computational Linguistics | 2 |
http://www.wikidata.org/entity/Q48910401 | The Web Conference 2018 | 2 |
http://www.wikidata.org/entity/Q50290385 | ESWC 2018 | 2 |
http://www.wikidata.org/entity/Q55497473 | European Conference on Computer Vision 2010 | 2 |
http://www.wikidata.org/entity/Q59620529 | ESWC 2019 | 2 |
http://www.wikidata.org/entity/Q59917009 | SEMANTiCS 2019 | 2 |
http://www.wikidata.org/entity/Q59917887 | ESWC 2016 | 2 |
http://www.wikidata.org/entity/Q68277652 | DC-2008 | 2 |
http://www.wikidata.org/entity/Q82290350 | The 2020 Conference on Empirical Methods in Natural Language Processing | 2 |
non tabular entries for academic conference/WikiCFP event ID:frequencies
query
SELECT ?count (COUNT(?count) AS ?frequency) WHERE {
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given WikiCFP event ID(P5124) https://www.wikidata.org/wiki/Property:P5124
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# WikiCFP event ID
?item wdt:P5124 ?value.
} GROUP by ?item ?itemLabel
}
GROUP BY ?count
ORDER BY DESC (?frequency)
result
count | frequency |
---|---|
1 | 98 |
non tabular entries for academic conference/WikiCFP event ID:records
query
# Count all academic conference(Q2020153) https://www.wikidata.org/wiki/Q2020153 items
# with the given WikiCFP event ID(P5124) https://www.wikidata.org/wiki/Property:P5124
SELECT ?item ?itemLabel (COUNT (?value) AS ?count)
WHERE
{
# instance of academic conference
?item wdt:P31 wd:Q2020153.
?item rdfs:label ?itemLabel.
filter (lang(?itemLabel) = "en").
# WikiCFP event ID
?item wdt:P5124 ?value.
} GROUP by ?item ?itemLabel
HAVING (COUNT (?value) > 1)
ORDER BY DESC(?count)