greeting,
how can I get a table with aggregate even if some of the rows has a count = 0?
I have a table like this, which show test result of samples in 3 days:
time result
301 ok
301 ng
302 ok
303 ok
303 ok
303 ng
and I want a aggregate table like this:
time ok ng
301 1 1
302 1 0
303 2 1
but infact I get this, which 302 is missing:
time ok ng
301 1 1
303 2 1
and my program is show as the jpg.
I use filter to get ok and ng sample set, aggregate with "count" function, then join ok and ng to one table.
so how can I get a table with 302 ?
thank you for your help.