I have a data frame which is already binned in 200 bins. How can I plot it with sns.swarmplot()
I read this but it doesn't work for me. For example:
bins number
1 202
2 10863
3 857
4 10544
5 5642
6 348
7 26
8 20
9 1
10 1
I don't know how can I un-binned the data frame by pandas or Numpy. The plot's shape should be like below. Total number of items is 6M in 200 bins so generating them in pandas or Numpy may cause memory problems.