Hi all
I have a list like
somelist{0}.val = 'apple'
somelist{1}.val = 'donut'
somelist{2}.val = 'aardvark'
somelist{3}.val = 'apple'
somelist{4}.val = 'aardvark'
somelist{5}.val = 'apple'
the list histogrammer transforms it into
_histogram{0}.value = 'apple'
_histogram{0}.count = 3
_histogram{1}.value = 'aardvark'
_histogram{1}.count = 2
_histogram{2}.value = 'donut'
_histogram{2}.count = 1
now I want this information as attribute pairs like
attribute_name attribute_value
apple 3
aardvark 2
donut 1
any Ideas how to do this in FME without fancy scripting or looping are much appreciated!