在matplotlib中有缩放轴的快速方法吗?
说我想绘制
import matplotlib.pyplot as plt
c= [10,20 ,30 , 40]
plt.plot(c)
如何快速缩放x轴,比如将每个值乘以5? 一种方法是为x轴创建一个数组:
x = [i*5 for i in range(len(c))]
plt.plot(x,c)
我想知道是否有更短的方法可以做到这一点,而不创建x轴列表,比如plt.plot(index(c)* 5,c)
答案 0 :(得分:1)
使用numpy.array代替列表
c = np.array([10, 20, 30 ,40]) # or `c = np.arange(10, 50, 10)`
plt.plot(c)
x = 5*np.arange(c.size) # same as `5*np.arange(len(c))`
这给出了:
>>> print x
array([ 0, 5, 10, 15])