标签:mat pie 显示中文 inpu display 范围 ash minus 名称
import numpy as np import pandas as pd
import matplotlib.pyplot as plt
%matplotlib inline
(上方代码块是自动绘图(省略show的方法))
# 查看可用风格 plt.style.available
plt.style.use("seaborn")
plt.plot( [1, 2, 3]) plt.title(‘这是一张图‘)
# windows 电脑 plt.rcParams[‘font.sans-serif‘]=[‘SimHei‘] plt.rcParams[‘axes.unicode_minus‘] = False
# mac 电脑 plt.rcParams[‘font.family‘] = [‘Arial Unicode MS‘] #正常显示中文
plt.plot( [1, 2, 3]) plt.title(‘这是一张图‘)
plot 折线图接口
plot(x, y, ‘go--‘, linewidth=2, markersize=12)
plot(x, y, color=‘green‘, marker=‘o‘, linestyle=‘dashed‘,
linewidth=2, markersize=12)
x = [1,2,3,4]
y = [2,4,1,6]
# plot 折线图 plt.plot(x, y )
# 第三个参数 颜色、点形状、线形状 plt.plot(x, y ,‘ro:‘)
# 原装的只有上面的三种,其他的需要自己设置参数修改。 plt.plot(x , y , color= ‘#104E8B‘ , linewidth =3, marker = ‘D‘, markersize= 9, linestyle = ‘--‘, label = ‘一条线‘ , alpha = 0.9 )
# 生成数据, 生成横坐标 x = np.arange(0,10,0.1)
# 生成 y y = np.sin(x)
plt.plot(x,y)
plt.xlabel(‘‘) plt.ylabel(‘‘) x轴和y轴添加标签
plt.grid(True) 添加网格
plt.figure(figsize = (8,5),dpi = 100) plt.plot(x,y,‘ro-‘,label = ‘sin图像‘) plt.title(‘sin图像‘,fontsize = 20 , color = "b" , loc = ‘left‘) plt.xlabel(‘x坐标‘,fontsize = 20 , color = "b") plt.ylabel(‘y坐标‘,fontsize = 20 , color = "b") plt.grid(False) #去掉网格 plt.xlim(-5,15) plt.ylim(-2,2) plt.text(-5,-2.5, ‘我看下在哪‘ , color = ‘g‘ , fontsize = 20) plt.legend(fontsize = 20)
grade = pd.read_csv(‘student_grade.txt‘,sep=‘\t‘)
plt.plot(grade.总分)
s1 = [1, 2, 3, 4, 5]
s2 = [10, 13, 6, 3, 12]
plt.bar(s1, s2)
bar是用来把你已经总结好的数据画出来,可以用来对比各个组的数据。
hist是制作一个频率分布图,比如说把一个数据分成10个部分,每个部分的频率是多少。 大概看一下数据的分布。
# bins = [0, 60, 90, 120, 135, 150] plt.hist(grade.语文 , 5, rwidth=0.8 , )
plt.scatter
# c 颜色数值 , s 尺寸数值, cmap 映射方法 x = np.arange(1,10) plt.scatter(x, x , c = x , s= x*100, cmap= ‘rainbow‘)
x, 数据
explode=None, 哪部分突出显示 (0, 0, 0.3, 0)
labels=None, 标签名称
colors=None, 颜色
autopct=None,百分号显示格式
pctdistance=0.6, 数字和边缘距离
shadow=False, 阴影
labeldistance=1.1, 标签距离
startangle=None, 角度
radius=None, 饼图半径
counterclock=True, 逆时针
labels = [ ‘吃饭‘, ‘交通‘, ‘游戏‘, ‘衣服‘] data = [1000, 100, 500, 2000]
plt.pie(data,labels=labels,explode=(0.1, 0, 0.3, 0),autopct=‘%1.1f%%‘, shadow=True, colors=[‘r‘, ‘k‘, ‘g‘, ‘b‘]);
plt.figure() # 创建图形 x = np.linspace(0, 10, 100) # 创建两个子图中的第一个,设置坐标轴 plt.subplot(2, 1, 1) # (行、列、子图编号) plt.plot(x, np.sin(x)) # 创建两个子图中的第二个,设置坐标轴 plt.subplot(2, 1, 2) plt.plot(x, np.cos(x))
stock_data = pd.read_csv(‘yahoo_stock.csv‘) stock_data
plt.figure(dpi=100) plt.plot(data.Open) # data.Open.plot( title=‘yahoo‘, legend=True,) plt.xlabel(‘日期‘) plt.ylabel(‘指数‘) plt.plot([],[],linewidth=3, label=‘loss‘, color=‘r‘,alpha=0.5) plt.plot([],[],linewidth=5, label=‘gain‘, color=‘g‘,alpha=0.5) # 添加标注 plt.axhline(data.Open[0], color=‘k‘, linewidth=2) plt.annotate(‘Bad News!‘,(‘2003-01-01‘, 10), xytext=(100, 200), textcoords=‘figure points‘, arrowprops = dict(facecolor=‘grey‘)) plt.legend() # 在两天线之间实现填充,和 第一天的开盘价相比较,高的用绿色,低的用红色。 plt.fill_between(data.index, data.Open,data.Open[0] , where=(data.Open > data.Open[0]), facecolor=‘g‘, alpha=0.5) plt.fill_between(data.index, data.Open,data.Open[0] , where=(data.Open < data.Open[0]), facecolor=‘r‘, alpha=0.5) plt.savefig(‘my_figure.png‘)
from IPython.display import Image
Image(filename=‘yahoo_stock.png‘)
标签:mat pie 显示中文 inpu display 范围 ash minus 名称
原文地址:https://www.cnblogs.com/BC10/p/11697796.html