自定义Matplotlib视图窗口

时间:2016-07-01 21:39:47

标签: python matplotlib

我已经使用matplotlib库绘制了一个图表,并且想知道是否有一种方法可以从自定义范围进行查看。我有几条垂直线,从0开始。图的开头也从零开始,看到第一行很难。有没有办法让我可以让视图窗口向左开始多一点(即使没有相关的值)?我知道在Mathematica中有PlotRange可能,但我没有看到`matplotlib'等等。

我尝试过使用以下网址上的示例:

http://matplotlib.org/examples/pylab_examples/vline_hline_demo.html

import matplotlib.pyplot as plt
import numpy as np
import numpy.random as rnd

def f(t):
    s1 = np.sin(2 * np.pi * t)
    e1 = np.exp(-t)
    return np.absolute((s1 * e1)) + .05

t = np.arange(0.0, 5.0, 0.1)
s = f(t)
nse = rnd.normal(0.0, 0.3, t.shape) * s

fig = plt.figure(figsize=(12, 6))
vax = fig.add_subplot(121)
vax.vlines(t, [0], s)

plt.show()

但是可以在左侧(或右侧)显示空白区域的情节

1 个答案:

答案 0 :(得分:1)

使用plt.xlim(或plt.ylim

将matplotlib.pyplot导入为plt 导入numpy为np 将numpy.random导入为rnd

def f(t):
    s1 = np.sin(2 * np.pi * t)
    e1 = np.exp(-t)
    return np.absolute((s1 * e1)) + .05

t = np.arange(0.0, 5.0, 0.1)
s = f(t)
nse = rnd.normal(0.0, 0.3, t.shape) * s

fig = plt.figure(figsize=(12, 6))
vax = fig.add_subplot(121)
vax.vlines(t, [0], s)

plt.xlim(-0.2,5.2)

plt.show()