Hi,
I am interested in trying to make a cumulative distribution function in Python. I have a set of data in a numpy array and just want to plot that data.
numpyArray = [0.4, 0.3, 0.6,1.2,1.8, 0.5]
I would also like to have a vertical line on the x-axis at 0.4 and 0.8. What would be the easiet way to do this?
Thanks.