A program to recognize and reward our most engaged community members
I am looking to do a normalization also within an attribute and wonder if I need the same operators as Ruca.
I have a list of product groups and prices. Since prices can vary between a few $/item and up to $1M/item, I need to normalize. Rather than normalizing by ID, I would normalize by product group such that all products of group 1 are normalized to each other, group 2 to each other, etc. so I can make meaningful comparisons of product groups with price. My data are like:
ID group price1 group1 12 group2 103 group3 10004 group1 25 group2 206 group3 2000
Group is a polynominal attribute; price is numerical. Of course I don't want to normalize all prices against each other so if I can use the looping operator to normalize each group at a time that would be awesome.
Thanks!
Scott