大熊猫:如何绘制大熊猫的电影数量与IMDB电影类型的饼图?

时间:2018-09-01 23:45:59

标签: python pandas matplotlib plot imdb

我有以下数据集:

import pandas as pd
import numpy as np 
%matplotlib inline

df = pd.DataFrame({'movie' : ['A', 'B','C','D'], 
                   'genres': ['Science Fiction|Romance|Family', 'Action|Romance',
                              'Family|Drama','Mystery|Science Fiction|Drama']},
                  index=range(4))
df

我的尝试

# Parse unique genre from all the movies
gen = []
for g in df['genres']:
    gg = g.split('|')
    gen = gen + gg
    gen = list(set(gen))

print(gen)

df['genres'].value_counts().plot(kind='pie')

我得到了这张图片: enter image description here

但是我想为每种流派绘制饼图。

如何获得每种独特类型的电影数量计数类型?

2 个答案:

答案 0 :(得分:4)

因此,一线解决方案:

df.genres.str.get_dummies().sum().plot.pie(label='Genre', autopct='%1.0f%%')

结果:

enter image description here


TL; DR

首先,将您的类别列转换为虚拟变量:

df = pd.concat([df.drop('genres', axis=1), df.genres.str.get_dummies()], axis=1)

结果:

  movie  a  b  c  d  e  f  g
0     A  1  1  1  0  0  0  0
1     B  0  0  1  0  1  0  0
2     C  0  0  0  0  0  1  1
3     D  1  1  0  1  1  0  0

然后计算每个类别的出现次数:

counts = df.drop('movie', axis=1).sum()

结果:

a    2
b    2
c    2
d    1
e    2
f    1
g    1

最后绘制饼图:

counts.plot.pie()

enter image description here

答案 1 :(得分:4)

您可以对.str.split()进行expand=True,这将为您提供所有类型的DataFrame。如果再堆叠,您将获得所有类型的值计数。

df.genres.str.split('|', expand=True).stack().value_counts().plot(kind='pie', label='Genre')

enter image description here

在计算计数方面可能会比较慢,因此对于相同的图,更快的实现是(加上百分比):

from itertools import chain
from collections import Counter
import matplotlib.pyplot as plt

cts = Counter(chain.from_iterable(df.genres.str.split('|').values))
_ = plt.pie(cts.values(), labels=cts.keys(), autopct='%1.0f%%')
_ = plt.ylabel('Genres')

enter image description here