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

matplotlib 安装与使用

时间:2015-11-20 17:28:04      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

1.在ubuntu下输入 sudo apt-get install python-matplotlib

   安装matplotlib

2.简单代码使用

技术分享

# -*- coding: utf-8 -*-
import numpy as np
import matplotlib.pyplot as plt
x = [0, 1, 2, 4, 5, 6]
y = [1, 2, 3, 2, 4, 1]
plt.plot(x, y, -.*r,label=Model length)
plt.text(1, 2, "I‘m a text")  #前两个参数表示文本坐标, 第三个参数为要添加的文本
plt.xlabel("x-axis")
plt.ylabel("y-axis")
plt.title("hello world")
plt.show()

 

2.

技术分享

# -*- coding: utf-8 -*-
import numpy as np
import matplotlib.pyplot as plt

X = np.linspace(-np.pi, np.pi, 256, endpoint=True)
#X 是一个 numpy 数组,包含了从 −π 到 +π 等间隔的 256 个值。C 和 S 则分别是这 256 个值对应的余弦和正弦函数值组成的 numpy 数组
C,S = np.cos(X), np.sin(X)

for i in range (1,5):
    string=%d %i
    plt.plot(X,C+i,label="i="+string)

plt.legend(loc=upper left, frameon=False)
plt.show()

3.我们希望在 2π/3 的位置给两条函数曲线加上一个注释。首先,我们在对应的函数图像位置上画一个点;然后,向横轴引一条垂线,以虚线标记;最后,写上标签。http://liam0205.me/2014/09/11/matplotlib-tutorial-zh-cn/

 

 

 

 

技术分享

matplotlib 安装与使用

标签:

原文地址:http://www.cnblogs.com/XDJjy/p/4981010.html

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