Khi tôi chạy mã nàyMatplotlib cốt truyện là một no-show
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')
tôi nhận được không có cốt truyện. Đây là cuốn sách của Wes McKinney về cách sử dụng Python để phân tích dữ liệu. Có ai có thể chỉ cho tôi đúng hướng không?
Nếu bạn đang sử dụng ipython (! Và bạn sẽ có), bạn có thể sử dụng cờ pylab: 'ipython --pylab' –
Cảm ơn, Andy. Tôi là. – ncmathsadist