Domande taggate «plot»

La rappresentazione grafica di una funzione matematica o di un insieme di dati. Esistono diversi tipi di grafici, come grafici a linee, grafici a barre o grafici a dispersione.

4
Matplotlib Legends non funziona
Da quando ho aggiornato matplotlib ricevo il seguente errore ogni volta che provo a creare una legenda: /usr/lib/pymodules/python2.7/matplotlib/legend.py:610: UserWarning: Legend does not support [<matplotlib.lines.Line2D object at 0x3a30810>] Use proxy artist instead. http://matplotlib.sourceforge.net/users/legend_guide.html#using-proxy-artist warnings.warn("Legend does not support %s\nUse proxy artist instead.\n\nhttp://matplotlib.sourceforge.net/users/legend_guide.html#using-proxy-artist\n" % (str(orig_handle),)) /usr/lib/pymodules/python2.7/matplotlib/legend.py:610: UserWarning: Legend does not support [<matplotlib.lines.Line2D object …

6
Traccia una barra usando matplotlib usando un dizionario
Esiste un modo per tracciare un grafico a barre matplotlibutilizzando i dati direttamente da un dict? Il mio dict ha questo aspetto: D = {u'Label1':26, u'Label2': 17, u'Label3':30} stavo aspettando fig = plt.figure(figsize=(5.5,3),dpi=300) ax = fig.add_subplot(111) bar = ax.bar(D,range(1,len(D)+1,1),0.5) per funzionare, ma non lo fa. Ecco l'errore: >>> ax.bar(D,range(1,len(D)+1,1),0.5) Traceback …



Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.