Hi guys i want to plot histogram in seaborn from dictionary data
{'C873-': 15, 'C860T': 16, 'A1860-': 17, 'A1878-': 17, 'C652T': 20, 'G372-': 33, 'C2107T': 37, '-447A': 144}
there is couple of threads with similar questions but they are saying that bar plot is better or given answers don't work as they shoudl. I need to plot this as histogram
what i was trying to do is
plt.hist([i[-1] for i in sum_dict], bins=len(sum_dict), color='g')
plt.show()
but this looks awful, is in plotly and probably is wrong
Im not stubborn to use seaborn so i will check out everything