GraphDB 中的聚合函数 AVG

Aggregate Function AVG in GraphDB

对于我在 GraphDB 9.4.1 中的项目,我使用 owl rl(优化)创建了一个存储库。

在我的数据中我需要查询一个数据的平均值属性。当我按照 SPARQL 指令执行步骤时,结果为空。我使用了以下查询:

PREFIX : <http://www.BLB.de/Ontologie#>
select ?s (AVG(?TP) as ?AP) where { 
?s a :MachinestatusID .
?s :hastotalpower_Kalender ?TP.
?s <http://www.BLB.de/Ontologie#Is_switched_on_Kalender> ?K
} Group by ?s ?K 

Result:

s                                                     AP
http://www.BLB.de/Daten/Anlagenstatus/id/1  
http://www.BLB.de/Daten/Anlagenstatus/id/2  
http://www.BLB.de/Daten/Anlagenstatus/id/3  

为了验证数据,我已经选择了没有聚合函数的数据。 Al?TP 的值介于 0 和 5000 之间。没有指定数据格式。 ?K 为 1 或 0。由于 GraphDB 文档支持 AVG 函数。

s                                           TP      K
http://www.BLB.de/Daten/Anlagenstatus/id/1  4186    1
http://www.BLB.de/Daten/Anlagenstatus/id/2  4183    1
http://www.BLB.de/Daten/Anlagenstatus/id/3  4177    1
http://www.BLB.de/Daten/Anlagenstatus/id/4  4171    1

是否有任何解决方案可以将实际平均值作为输出?

需要显式转换 ?TP 的数据格式。将平均函数修改为以下内容解决了问题:

(AVG(xsd:integer(?TP)) as ?AP)