Please can someone tell me how i could get the most frequent/modal array out of an nested array?
So for example for:
a = np.array([[A, 8, 3, 0],[B, 8, 4, 0],[A, 8, 3, 0]])
The result should be [A, 8, 3, 0] with count 2.
I did my research on that problem, but only found solutions which compare one value of one dimension and not the whole arrays.
And is it possible to get the 2nd and 3rd most frequent array too?
Thank you in advance,
Greetings :)