[Matplotlib] Ploting an exponential distribution frequency curve

Mario Figueiredo marfig at gmail.com
Sat Apr 25 18:36:03 EDT 2015


On Sat, 25 Apr 2015 23:33:10 +0100, Mario Figueiredo
<marfig at gmail.com> wrote:

>
>Trying to plot this data into a frequency curve is proving too
>challenging and I just can't understand why.
>
>    plot(list(results.keys()), list(results.values()))
>

The above should read:

    results = generate(1)
    plot(list(results.keys()), list(results.values()))



More information about the Python-list mailing list