freq = {1: 1000, 2: 980, 4: 560, ... 40: 3, 41: 1, 43: 1}
(Between 1 to 43, not all numbers are keys)
I want to make a histogram and plot it, such that I can see each key on the X axis, and the values on Y axis using matplotlib. How do I do this? I do not wish to create bins (need all values covered individually) and no tutorial is really helpful to make me understand the terms. I am also short on time, so couldn't get into all the terminology. What is the best way to do this?