美文网首页
数据挖掘-画图

数据挖掘-画图

作者: 紫弟 | 来源:发表于2019-03-21 16:05 被阅读0次

    matplotlib

    图对象
    subbot 图位置
    bar 柱状图,plot 折线图 ,scatter 散点图 x,y
    设置座标轴范围
    具体设置坐标
    
    
    import numpy as np
    import matplotlib.pyplot as plt
    %matplotlib inline
    
    plt.figure()
    x = np.array([1,2,3,4,5,6,7,8])
    y = np.array([3,5,7,6,2,6,10,15])
    plt.plot(x,y,'r')# 折线 1 x 2 y 3 color
    plt.bar(x,y,0.2,alpha=1,color='b')# 5 color 4 透明度 3 0.9
    plt.scatter(x, y, c = color, alpha = 0.5)
    
    # 设置坐标轴范围
    plt.xlim((-1.5, 1.5))
    plt.ylim((-1.5, 1.5))
    
    # 设置x,y标签
    plt.xlabel(u'这是x轴',fontproperties='SimHei',fontsize=14)
    plt.ylabel(u'这是y轴',fontproperties='SimHei',fontsize=14)
    
    y = np.linspace(0, 5, 11)
    plt.yticks(y, fontsize=9)
    
    
    
    
    
    plt.show()
    

    相关文章

      网友评论

          本文标题:数据挖掘-画图

          本文链接:https://www.haomeiwen.com/subject/mrznmqtx.html