I have a barplot of occurrence statistics for small objects.
These objects can be represented as images let's say 64x64.
I am trying to replace the seaborn/matplotlib barplot xtick labels identifier/index 1, 2, 3, with the actual image object corresponding, so that at position:
- 1 -> im[1]
- 2 -> im[2]
- etc.
where im[i] is that image that corresponds to identifier/index i
It's a very common use-case for which I couldn't find a solution and thus I decided to open it here.