web-dev-qa-db-fra.com

Le complot de Matplotlib est un no-show

Quand j'exécute ce code

import pandas as pd
import numpy as np
def add_prop(group):
    births = group.births.astype(float)
    group['prop'] = births/births.sum()
    return group

pieces = []
columns = ['name', 'sex', 'births']

for year in range(1880, 2012):
    path = 'yob%d.txt' % year
    frame = pd.read_csv(path, names = columns)
    frame['year'] = year
    pieces.append(frame)
    names = pd.concat(pieces, ignore_index = True)

total_births = names.pivot_table('births', rows = 'year', cols = 'sex', aggfunc = sum)
total_births.plot(title = 'Total Births by sex and year')

Je n'ai aucun complot. Ceci est tiré du livre de Wes McKinney sur l'utilisation de Python pour l'analyse des données. Quelqu'un peut-il m'orienter dans la bonne direction?

58
ncmathsadist

Mettre

import matplotlib.pyplot as plt

en haut, et

plt.show()

à la fin.

164
unutbu

Dans le bloc-notes IPython, vous pouvez également utiliser %matplotlib inline en haut du bloc-notes pour afficher automatiquement les tracés créés dans les cellules de sortie.

31
jmz

votre code est correct. il suffit de mettre:

import matplotlib as plt

pour afficher votre tracé:

plt.show()
2
Akash Nayak