Hey I have the following problem. I have a array like this:
arr1=
[[4 4 4]
[4 4 6]
[4 3 4]
[4 4 7]
[4 4 3]
[4 4 1]
[3 4 7]
[4 3 7]
[4 4 5]
[4 3 6]]
Now i want to get a stacked bar plot(histogram), that shows the number of different elements,, like this:
My frist approach was to bincount the elements, fill the arrays up, but then i dont know what to do.
arr2=
[[0 0 0]
[0 0 1]
[0 0 0]
[1 3 1]
[9 7 2]
[0 0 1]
[0 0 2]
[0 0 3]]


