python如何新建一个窗口_python matplotlib 同时创建多个窗口

本文介绍了如何使用Python的matplotlib库创建和管理多个图形窗口。通过示例代码`multiple_figs_demo.py`展示了在同一窗口内创建子图以及在不同窗口间切换的方法。另外,还提供了`multipage_pdf.py`的代码,演示了如何生成包含多页的PDF文件,并设置文件元数据。
摘要由CSDN通过智能技术生成

展开全部

在此我只想强调一下各种库的文档、示e69da5e887aa3231313335323631343130323136353331333335326165例等自带资料的重要性。

下面都是matplotlib的demo里面的,正是你需要的这些功能。

multiple_figs_demo.py#!/usr/bin/env python

# Working with multiple figure windows and subplots

from pylab import *

t = arange(0.0, 2.0, 0.01)

s1 = sin(2*pi*t)

s2 = sin(4*pi*t)

figure(1)

subplot(211)

plot(t,s1)

subplot(212)

plot(t,2*s1)

figure(2)

plot(t,s2)

# now switch back to figure 1 and make some changes

figure(1)

subplot(211)

plot(t,s2, 'gs')

setp(gca(), 'xticklabels', [])

figure(1)

savefig('fig1')

figure(2)

savefig('fig2')

show()

下面是关于pdf的multipage_pdf.py# This is a demo of creating a pdf file with several pages.

import datetime

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值