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 than a bar graph. The problem with a bar
> graph is that different bin widths give different results.
>
> GNU Plot seems to do a decent job, as can e seen at http://
> chem.skku.ac.kr/~wkpark/tutor/gnuplot/gpdocs/prob.htm. But there
> should be a way to do this nicely with matplotlib, right?

Just replace

  ax.bar(bins, p)

with

  ax.plot(bins, b)

in the example code I posted previously...

JDH

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to