i'm newbie in python but i don't know how to solve this problem
I need an histogram in my code. I use this:
import matplotlib.pyplot as plt
plt.hist(datos["Ozone"], bins=10)
Note: datos is a dataframe.
I tested with other more basic examples, but never show the graph of the histogram. I think is a problem with the Console, but i don't know how solve the problem.