Can anyone show me how I can calculate the number of unique values within the list of each record using Python?
For example, what is the count of "Primary" or "Repair"?
I know that I can do this easily by exploding the list and go from there. But since I have over 1mil lists, I think the best way to do it is to take advantage of Python to improve performance. Thanks in advance!