I have a value which if 0 is unsigned and anything else would be adhoc signed. I'm trying to do a count of these values, but when I do something like:
I get something the following output:
flags | type | type_count |
0 | unsigned | 30 |
570556419 | adhoc | 10 |
512 | adhoc | 23 |
570425859 | adhoc | 500 |
Is there some way that I can combine the adhoc values so instead I get
flags | type | type_count |
0 | unsigned | 30 |
570556419,512,570425859 | adhoc | 533 |
This way I can build visualizations off type and type_count.