在Matplotlib中按日期更改xlim

时间:2015-08-19 16:24:31

标签: python datetime matplotlib graph axis-labels

我正在尝试用Python制作一个视觉上吸引人的图形。我在这里使用Randal Olson的例子http://www.randalolson.com/2014/06/28/how-to-make-beautiful-data-visualizations-in-python-with-matplotlib/并试图做出一些调整。

我的数据很简单,

dispute_percentage
Out[34]: 

2015-08-11    0.017647
2015-08-12    0.004525
2015-08-13    0.006024
2015-08-14    0.000000
2015-08-15    0.000000
2015-08-17    0.000000

问题是数据在2015年2月开始加载,我想在2015年4月开始显示。

这是我的代码

from __future__ import division
from collections import OrderedDict
import pandas as pd
from collections import Counter
from pylab import * 
import datetime as datetime 
dispute_percentage.plot(kind = 'line')
plt.xlabel('Date')
plt.ylabel('Percent')
plt.title('Percent Disputes In FY2015')

# Remove the plot frame lines. They are unnecessary chartjunk.    
ax = plt.subplot(111)    
ax.spines["top"].set_visible(False)    
ax.spines["bottom"].set_visible(False)    
ax.spines["right"].set_visible(False)    
ax.spines["left"].set_visible(False) 


# Ensure that the axis ticks only show up on the bottom and left of the plot.    
# Ticks on the right and top of the plot are generally unnecessary chartjunk.    
ax.get_xaxis().tick_bottom()    
#ax.get_yaxis().tick_left()    

# Limit the range of the plot to only where the data is.    
# Avoid unnecessary whitespace.   
datenow = datetime.datetime.now
dstart = datetime(2015,4,1)
print datenow 
plt.ylim(0, .14)    
plt.xlim(dstart, datenow)    

xlim正是我所挣扎的。我收到了错误

File "C:/Mypath/name.py", line 52, in <module>
    dstart = datetime(2015,4,1)

TypeError: 'module' object is not callable

如果有人能帮助解决这个问题,那就太棒了。此外,任何有关试图使其更漂亮的意见也将受到赞赏。

1 个答案:

答案 0 :(得分:5)

您需要在末尾用括号调用datetime.datetime.now(),对于dstart,您需要使用datetime模块的datetime方法:{{1 }}

datetime.datetime(2015,4,1)

修改import datetime datenow = datetime.datetime.now() dstart = datetime.datetime(2015,4,1) 设置为本月的第一天(感谢@AndyKubiak):

xticks