点击查看【bilibili】
可视化第一步:
导入pandas库,加载数据可视化数据包

  1. import pandas as pd #加载pandas库
  2. import matplotlib.pyplot as plt #加载数据可视化包
  3. %matplotlib inline #可视化直接展示在页面,仅限用于Jupyter Notebook中
  4. plt.style.use('ggplot') #更改设计风格
  5. df=pd.read_csv('DataAnalyst.csv',encoding='utf8') #加载数据

折线图 plot()

  1. #绘制折线图,plot()
  2. df.salary.value_counts().sort_index().plot()

out:
image.png


柱形图 bar()

  1. #绘制柱形图,bar()
  2. df.salary.value_counts().sort_index().plot.bar(figsize=(15,8))

out:
image.png


堆积柱状图 bar(stacked=True)

  1. #堆积柱形图,bar(stacked=True)
  2. df.pivot_table(index='city',columns='education',values='salary',aggfunc='count').plot.bar(stacked=True)
  3. #没汉字的字体,图中的标签会显示为“日”。

out:
image.png


条形图(柱状图横过来)barh

  1. #条形图(水平柱状图),barh()
  2. df.pivot_table(index='city',columns='education',values='salary',aggfunc='count').plot.barh(stacked=True)

out:
image.png