绘图与数据可视化

生成多个图 

import numpy as np
import pandas as pda
import matplotlib.pyplot as plt
import seaborn as sns
from pandas import Series
from numpy.random import randn
plt.rcParams['font.sans-serif']=['simHei']
fig,axes=plt.subplots(2,2,sharex=True,sharey=True)               #生成4个subplot sharex,sharey共用x和y轴
for i in range(2):
    for j in range(2):
        axes[i,j].hist(randn(500),bins=10,color='k',alpha=1)   #bins表示分组数,alpha透明度
plt.subplots_adjust(wspace=0.1,hspace=0.1)           #间距

设置X轴Y轴的刻度,标签 

fig=plt.figure(figsize=(10,6),frameon=True,facecolor="#ECECEC")  #定义画布       
ax=fig.add_subplot(1,1,1)                                        #划分
ax.plot(randn(1000).cumsum(),'g--')    #随机漫步图,'g--'=> color='green',linestyle="--"
ax.set_xticks([0,250,500,750,1000])    #设置刻度
ax.set_xticklabels(['one','two','three','four','five'],rotation=30,fontsize='large')
ax.set_xlabel("x轴")
ax.set_ylabel("y轴")
fig=plt.figure(figsize=(10,6),frameon=True,facecolor="#ECECEC")         
plt.plot(randn(1000).cumsum())
plt.xlabel("注意")
plt.xticks(rotation=45)

 

 

 

将多组数据合并到同一张图中,并设置图例 

fig=plt.figure(figsize=(10,6),frameon=True,facecolor="#ECECEC")         
ax=fig.add_subplot(1,1,1)
ax.plot(randn(100).cumsum(),'r',label='one')
ax.plot(randn(100).cumsum(),'k--',label='two')
ax.plot(randn(100).cumsum(),'g.',label='three')
ax.legend(loc="best")                                      #选择一个不碍事的地方待着

 

 

幸甚至哉,歌以咏志 

IDNAME
CarryJoe周楷钥
ZKyZKy
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值