Skip to content

Instantly share code, notes, and snippets.

@nuit
Last active August 29, 2015 14:05
Show Gist options
  • Save nuit/8699023b5a5fbfde196c to your computer and use it in GitHub Desktop.
Save nuit/8699023b5a5fbfde196c to your computer and use it in GitHub Desktop.
scidavis, python, histogram
import numpy as np
import pylab as pl
dados = np.random.normal(5.0, 3.0, 1000)
pl.hist(dados)
pl.xlabel('dados')
pl.title('Meu Histograma')
pl.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment