6
Trazar una barra usando matplotlib usando un diccionario
¿Hay alguna forma de trazar un diagrama de barras matplotlibutilizando datos directamente de un dictado? Mi dictado se ve así: D = {u'Label1':26, u'Label2': 17, u'Label3':30} Yo estaba esperando 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) para trabajar, pero no lo hace. Aquí está el error: >>> ax.bar(D,range(1,len(D)+1,1),0.5) …
93
python
matplotlib
plot