0

我是 Couchdb 的新手。我想计算蒲团值的平均值。

我的地图功能:

function(doc) {
if(doc.Fares.Taxes)
    emit(1, doc.Fares.Taxes);
}

我的减少功能:

function(amount,values){
return sum(values/amount);
}
4

1 回答 1

1

sum您已经内置了对and的支持,count并且您有stats; 你应该能够使用它们来计算它:http ://wiki.apache.org/couchdb/Built-In_Reduce_Functions

您还有一个如何在“食谱”中“手动”计算总和的示例:http: //guide.couchdb.org/draft/cookbook.html#aggregate您应该能够扩展该总和示例以计算平均值.

于 2013-05-28T21:08:48.010 回答