I have this below data.
col1 col2 value a 01/01/14 10 a 01/01/14 35 a 01/01/14 68 a 01/01/14 21 a 01/01/14 24 b 01/01/14 26 b 01/01/14 35 b 01/01/14 39 b 01/01/14 87 c 01/01/14 25 c 01/01/14 63 c 01/01/14 11 c 01/01/14 25 c 01/01/14 35
If I wanted to take the sum of col1. I could do it by using col1Dim.group().reduceSum(function(d) { return d.value })
. If I need the count i can replace sum with count.
But I'm here loooking for average. So to that. I need to take sum of col1 and count of col1.
Any idea how can i divide and get the average?
Please help. Stuck in this for almost 3 days.
I have this below data.
col1 col2 value a 01/01/14 10 a 01/01/14 35 a 01/01/14 68 a 01/01/14 21 a 01/01/14 24 b 01/01/14 26 b 01/01/14 35 b 01/01/14 39 b 01/01/14 87 c 01/01/14 25 c 01/01/14 63 c 01/01/14 11 c 01/01/14 25 c 01/01/14 35
If I wanted to take the sum of col1. I could do it by using col1Dim.group().reduceSum(function(d) { return d.value })
. If I need the count i can replace sum with count.
But I'm here loooking for average. So to that. I need to take sum of col1 and count of col1.
Any idea how can i divide and get the average?
Please help. Stuck in this for almost 3 days.
Share Improve this question edited Nov 9, 2015 at 16:29 davidshinn 1,9461 gold badge16 silver badges17 bronze badges asked Feb 3, 2014 at 4:47 user3206082user3206082 43110 silver badges18 bronze badges 2- How about getting the sum and the count and then the average is sum/count? – Tibos Commented Feb 3, 2014 at 4:51
-
How can I do it with
dc.js
? – user3206082 Commented Feb 3, 2014 at 5:50
1 Answer
Reset to default 16You need to use the group.reduce(add, remove, initial) method, like:
var col1DimTotal = col1Dim.group().reduce(reduceAdd, reduceRemove, reduceInitial);
function reduceAdd(p, v) {
++p.count;
p.total += v.value;
return p;
}
function reduceRemove(p, v) {
--p.count;
p.total -= v.value;
return p;
}
function reduceInitial() {
return {count: 0, total: 0};
}
Because you're using dc.js, you'll need to use chart.valueAccessor method to use the average in your charts, like:
chart.valueAccessor(function(p) { return p.value.count > 0 ? p.value.total / p.value.count : 0; });
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743633585a4481776.html
评论列表(0条)