我已经遍历了pylab示例和许多轴格式化问题,但是仍然无法从下图中的x轴中删除微秒。

尝试更改轴/刻度线属性及其输出之前的原始代码。



#filenames to be read in
file0 = 'results'


#Get data from file strore in record array
def readIn(fileName):
    temp = DataClass()
    with open('%s.csv' % fileName) as csvfile:
        temp = mlab.csv2rec(csvfile,names = ['date', 'band','lat'])
    return temp

#plotting function(position number, x-axis data, y-axis data,
#                       filename,data type, units, y axis scale)
def iPlot(num,xaxi,yaxi,filename,types, units,scale):
    plt.subplot(2,1,num)
    plt.plot_date(xaxi,yaxi,'-')
    plt.title(filename + "--%s" % types )
    plt.ylabel(" %s  %s " % (types,units))
    plt.ylim(0,scale)
    plt.xticks(rotation=20)



# Set plot Parameters and call plot funciton
def plot():
    nameB = "Bandwidth"
    nameL = "Latency"
    unitsB = " (Mbps)"
    unitsL = "(ms)"
    scaleB = 30
    scaleL = 500

    iPlot(1,out0['date'],out0['lat'],file0,nameL,unitsL,scaleL)
    iPlot(2,out0['date'],out0['band'],file0,nameB,unitsB,scaleB)

def main():
    global out0
    print "Creating plots..."

    out0 = readIn(file0)
    plot()

    plt.show()

main()


我的尝试是通过添加以下内容来更改上面的代码:

months   = date.MonthLocator()  # every month
days     = date.DayLocator()
hours    = date.HourLocator()
minutes    = date.MinuteLocator()
seconds   = date.SecondLocator()


def iPlot(num,xaxi,yaxi,filename,types, units,scale):
    plt.subplot(2,1,num)
    plt.plot_date(xaxi,yaxi,'-')
    plt.title(filename + "--%s" % types )
    plt.ylabel(" %s  %s " % (types,units))
    plt.ylim(0,scale)

    # Set Locators
    ax.xaxis.set_major_locator(days)
    ax.xaxis.set_minor_locator(hours)

    majorFormatter = date.DateFormatter('%M-%D %H:%M:%S')
    ax.xaxis.set_major_formatter(majorFormatter)
    ax.autoscale_view()


默认情况下,我设置的主要格式化程序是否被覆盖?有没有一种方法可以关闭微秒,而不会破坏其余格式?我不清楚微秒的来源,因为我的数据不包含微秒。

最佳答案

我的代码有几个问题。首先,它不起作用(而且我的意思是即使我制作了所有模拟样本数据也不起作用)。其次,这并不是显示错误所在的最小工作示例,我想不出您的date是什么,我想matplotlib.dates吗?第三,我看不到您的图(您的完整标签上也带有'%M-%D部分)

现在,我遇到的问题是,我无法弄清楚您怎么才能超越('%M-%D %H:%M:%S')行,这会以我的方式抛出错误的语法。 (Matplotlib 1.3.1 Win7都在python2.6.6和3.4上使用)。我看不到您的ax是什么,或者您的数据看起来如何,当涉及到此类问题时,所有这些都会成为问题。即使时间跨度过大也会导致滴答声“溢出”(特别是当您尝试将小时定位器放在几年范围内时,即我认为7200滴答声会引发错误吗?)

同时,这是我的最小工作示例,与您的行为不同。

import matplotlib as mpl
import matplotlib.pyplot as plt
import datetime as dt

days     = mpl.dates.DayLocator()
hours    = mpl.dates.HourLocator()


x = []
for i in range(1, 30):
    x.append(dt.datetime(year=2000, month=1, day=i,
                             hour=int(i/3), minute=i, second=i))
y = []
for i in range(len(x)):
    y.append(i)

fig, ax = plt.subplots()
plt.xticks(rotation=45)
ax.plot_date(x, y, "-")

ax.xaxis.set_major_locator(days)
ax.xaxis.set_minor_locator(hours)

majorFormatter = mpl.dates.DateFormatter('%m-%d %H:%M:%S')
ax.xaxis.set_major_formatter(majorFormatter)
ax.autoscale_view()

plt.show()




(所有这些都不应该是一个答案,也许可以证明对您有帮助,但是评论太久了)。

关于python - 如何从matplotlib图中删除微秒?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28866530/

10-15 23:31