Last active
August 29, 2015 14:05
-
-
Save nuit/8699023b5a5fbfde196c to your computer and use it in GitHub Desktop.
scidavis, python, histogram
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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