I'm new here and a newbie in Python. I'd like to ask a question about calculating frequency for multiple combination of variables in Python.
I have a list of a lists that looks like this for example:
[[A,A,A],[A,B,C],[A,A,A],[A,B,B],[A,B,C]]
And I want python to count the frequency for all combination in that list, and the result will look like this:
[[A,A,A,2],[A,B,C,2],[A,B,B,1]]
Is there any possible way in Python to do that, or is there any python module that supports something similar to that? I've found a function in Arcpy module that I think similar to what I want to do here but I don't own any ArcGIS license or software so I can't get access to use that function.