Difference between revisions of "Q1.4"

From BITPlan cr Wiki
Jump to navigation Jump to search
(Created page with "=Query= {{Query |id=1.4 |title=Average #of pages in workshop |description=Compute the average length of a paper (in pages) in workshop W |sparql=SELECT DISTINCT ?proceedings...")
 
Line 5: Line 5:
 
|title=Average #of pages in workshop
 
|title=Average #of pages in workshop
 
|description=Compute the average length of a paper (in pages) in workshop W
 
|description=Compute the average length of a paper (in pages) in workshop W
 +
|since=2015-08-25
 
|sparql=SELECT DISTINCT ?proceedings (AVG(?number_of_pages) as ?avg_number_of_pages)
 
|sparql=SELECT DISTINCT ?proceedings (AVG(?number_of_pages) as ?avg_number_of_pages)
 
WHERE{
 
WHERE{

Revision as of 11:58, 19 March 2023

Query

Query
edit
id  1.4
name  
title  Average #of pages in workshop
description  Compute the average length of a paper (in pages) in workshop W
sparql  
SELECT DISTINCT ?proceedings (AVG(?number_of_pages) as ?avg_number_of_pages)
WHERE{
  VALUES ?volume_number {"3262"}
  ?proceedings wdt:P31 wd:Q1143604;
               wdt:P179 wd:Q27230297;
               p:P179/pq:P478 ?volume_number.
  
  ?paper wdt:P31 wd:Q13442814;
         wdt:P1433 ?proceedings;
         wdt:P1104 ?number_of_pages.
}
GROUP BY ?proceedings
tryiturl  NGlB2l→NGlB2l
wdqsurl  →6UAX
scholia  →
relevance  
comment  
task  Task1→Task1

Freitext