I have some data (TEMP_2) and I wanted to obtain a distribution for that data. I know how to do the histogram using:
import numpy as np
from pylab import *
plt.figure(1)
data1 = loadtxt("TEMP_2")
a= data1[:,1]
plt.hist(a,100, normed=True,)
show ()
But, I wanted to have a distribution. Can anybody please help me with this..
data file:
1000 299.23
2000 310.56
3000 308.21
4000 305.86
5000 305.21
6000 301.35
7000 295.37
8000 307.80
9000 295.61
: :
: :
200000 307.18