码迷,mamicode.com
首页 > 其他好文 > 详细

matplotlib-曲线和折线案例

时间:2018-11-09 16:26:32      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:nump   bottom   orange   atp   坐标轴   red   技术   info   highlight   

matplotlib-曲线和折线案例

import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(-5, 5, 100)
print(x)
y1 = 0.8 * x+10
y2 = x * x

plt.figure()
plt.xlabel(‘X axis...‘)
plt.ylabel(‘Y axis...‘)                                #设置坐标轴的文字标签

ax = plt.gca()                                            # get current axis 获得坐标轴对象

ax.spines[‘right‘].set_color(‘blue‘)
ax.spines[‘top‘].set_color(‘red‘)         # 将右边 上边的两条边颜色设置为空 其实就相当于抹掉这两条边

ax.xaxis.set_ticks_position(‘bottom‘)   
ax.yaxis.set_ticks_position(‘left‘)          # 指定下边的边作为 x 轴   指定左边的边为 y 轴

ax.spines[‘bottom‘].set_color(‘yellow‘)
ax.spines[‘left‘].set_color(‘orange‘)

ax.spines[‘bottom‘].set_position((‘data‘, 0))   #指定 data  设置的bottom(也就是指定的x轴)绑定到y轴的0这个点上
ax.spines[‘left‘].set_position((‘data‘, 0))

plt.plot(x, y1, linestyle=‘--‘)
plt.plot(x, y2)

plt.show()

  

输出:

技术分享图片

 

matplotlib-曲线和折线案例

标签:nump   bottom   orange   atp   坐标轴   red   技术   info   highlight   

原文地址:https://www.cnblogs.com/andy9468/p/9934988.html

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