码迷,mamicode.com
首页 > 编程语言 > 详细

[Python Study Notes]pd.read_csv()函数读取csv文件绘图

时间:2018-03-02 23:10:21      阅读:447      评论:0      收藏:0      [点我收藏+]

标签:env   ttf   border   出现   log   ima   参数   idt   too   

技术分享图片

‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘
>>文件: pandas读取csv文件.py
>>作者: liu yang
>>博客: liuyang1.club
>>邮箱: liuyang0001@outlook.com
>>博客: www.cnblogs.com/liu66blog

‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import matplotlib
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
# 定义要使用的字体,防止出现中文乱码
font=matplotlib.font_manager.FontProperties(fname=r"C:\Windows\Fonts\Deng.ttf")

# 添加索引index_col=0 设置第一列为索引
df = pd.read_csv(u‘xxxx.csv‘,encoding=‘utf-8‘,index_col=0)

# print(df)
df_plot = df.plot(kind=‘bar‘, rot=0)
# 设置标题头
plt.title(‘学生信息‘, fontproperties=font)
# 第一个参数为数据排序,loc设置图例位置
plt.legend(loc=1)
plt.xlabel(‘姓名‘, fontproperties=font)
plt.ylabel(‘‘, fontproperties=font)
plt.xticks(fontproperties=font)
plt.yticks([y for y in range(0, 180, 10)],fontproperties=font)
# for x,y,z in zip(df.get(‘Height‘)):
# plt.text(-0.2,df.get("Height")[0],‘%.0f‘%df.get("Height")[0], ha=‘center‘, va=‘bottom‘)
# plt.text(0,df.get("Score")[0],‘%.0f‘%df.get("Score")[0], ha=‘center‘, va=‘bottom‘)
# plt.text(0.15,df.get("Age")[0],‘%.0f‘%df.get("Age")[0], ha=‘center‘, va=‘bottom‘)
# df.to_csv(‘数据.csv‘,encoding=‘utf-8‘)
# 显示
plt.show()

[Python Study Notes]pd.read_csv()函数读取csv文件绘图

标签:env   ttf   border   出现   log   ima   参数   idt   too   

原文地址:https://www.cnblogs.com/liu66blog/p/8495171.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!