d = pd.DataFrame({'Person':[1,2,3,4,5], 'FavMovie': ['Ma Se Fr', 'Ma', 'Se Ma', 'Fr Ma', 'Se']})
lst = d.FavMovie.tolist()
lst = [elem.strip().split() for elem in lst]
lst = [elem for sub_lst in lst for elem in sub_lst]
fig, ax = plt.subplots(1,1)
pd.DataFrame({'freq' : lst}).groupby('freq', as_index=True).size().plot(kind = 'bar', ax=ax)
fig # plot saved in fig
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…