码迷,mamicode.com
首页 > 编程语言 > 详细

python notebook

时间:2017-03-17 14:38:32      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:time   qps   ibgp   pca   rdp   zha   oom   cot   aoe   

 

 

In [3]:
print "hello world"
 
hello world
In [5]:
for i in range(5):
    print i
 
0
1
2
3
4
In [12]:
import matplotlib.pyplot as plt
fig = plt.figure()
ax1 = fig.add_subplot(2,2,1)
plt.show()
 
技术分享
In [11]:
import numpy as np
import matplotlib.pyplot as plt
plt.figure(1) # 创建图表1
plt.figure(2) # 创建图表2
ax1 = plt.subplot(211) # 在图表2中创建子图1
ax2 = plt.subplot(212) # 在图表2中创建子图2
x = np.linspace(0, 3, 100)
for i in xrange(5):
    plt.figure(1)  #? # 选择图表1
    plt.plot(x, np.exp(i*x/3))
    plt.sca(ax1)   #? # 选择图表2的子图1
    plt.plot(x, np.sin(i*x))
    plt.sca(ax2)  # 选择图表2的子图2
    plt.plot(x, np.cos(i*x))
plt.show()
 
技术分享
 
技术分享
In [ ]:
 

python notebook

标签:time   qps   ibgp   pca   rdp   zha   oom   cot   aoe   

原文地址:http://www.cnblogs.com/zk47/p/6565612.html

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