Re: [Matplotlib-users] cumulative distribution function

2007-03-22 Thread Mark Bakker
This will give you a smooth line for your cumulative distribution function: x = randn(1) y = sort(x) plot(y,linspace(0,1,1)) Mark - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay

Re: [Matplotlib-users] cumulative distribution function

2007-03-20 Thread Werner Hoch
Hi Simson, On Wednesday 21 March 2007 02:59, Simson Garfinkel wrote: > Thanks for the information. Unfortunately, this CDF doesn't look like > the CDF that we see in other published papers. I'm not sure what they > are done with... But they have a thin line that shows the integral > of all measur

Re: [Matplotlib-users] cumulative distribution function

2007-03-20 Thread John Hunter
On 3/20/07, Simson Garfinkel <[EMAIL PROTECTED]> wrote: > Thanks for the information. Unfortunately, this CDF doesn't look like > the CDF that we see in other published papers. I'm not sure what they > are done with... But they have a thin line that shows the integral > of all measurements, rather

Re: [Matplotlib-users] cumulative distribution function

2007-03-20 Thread Simson Garfinkel
Thanks for the information. Unfortunately, this CDF doesn't look like the CDF that we see in other published papers. I'm not sure what they are done with... But they have a thin line that shows the integral of all measurements, rather than a bar graph. The problem with a bar graph is that

Re: [Matplotlib-users] cumulative distribution function

2007-03-18 Thread Simson Garfinkel
On Mar 18, 2007, at 12:41 PM, John Hunter wrote: > On 3/17/07, Simson Garfinkel <[EMAIL PROTECTED]> wrote: >> Hi. I haven't been active for a while, but now I have another paper >> that I need to get out... > > Glad to have you back... Thanks. I've taken a new job, moved to california, and have

Re: [Matplotlib-users] cumulative distribution function

2007-03-18 Thread John Hunter
On 3/17/07, Simson Garfinkel <[EMAIL PROTECTED]> wrote: > Hi. I haven't been active for a while, but now I have another paper > that I need to get out... Glad to have you back... > Anyway, I need to draw a cumulative distribution function, as the > reviewers of my last paper really nailed me to t

[Matplotlib-users] cumulative distribution function

2007-03-17 Thread Simson Garfinkel
Hi. I haven't been active for a while, but now I have another paper that I need to get out... Anyway, I need to draw a cumulative distribution function, as the reviewers of my last paper really nailed me to the wall for including histograms instead of CDFs. Is there any way to plot a CDF wit