python - 带有 imshow 的 matplotlib 图的 x 轴日期

标签 python datetime matplotlib plot imshow

所以我是 matplotlib 编程的新手。我使用 imshow() 和数组创建了一个彩色图。起初,轴只是我数组的行号和列号。我使用 extent = (xmin,xmax,ymin,ymax) 分别以 unix 时间和高度获取 x 轴。

我想将 x 轴从 unix 时间 (982376726,982377321) 更改为 UT(02:25:26, 02:35:21)。我已经在 HH:MM:SS 中创建了一个时间范围列表。我不确定如何在不更改颜色图(或使其消失)的情况下用这些新数字替换我当前的 x 轴。

我正在查看 datetime.time,但我对它感到困惑。

如有任何帮助,我们将不胜感激!

最佳答案

我整理了一些示例代码,应该可以帮助您解决问题。

代码首先使用 numpy.random 生成一些随机数据。然后它会计算您的 x 限制和 y 限制,其中 x 限制将基于您问题中给出的两个 unix 时间戳,而 y 限制只是通用数字。

代码然后绘制随机数据并使用 pyplot 方法将 x 轴格式转换为很好表示的字符串(而不是 unix 时间戳或数组编号)。

代码有很好的注释,应该可以解释您需要的一切,如果没有,请发表评论并要求澄清。

import numpy as np
import matplotlib.pyplot as plt

import matplotlib.dates as mdates

import datetime as dt

# Generate some random data for imshow
N = 10
arr = np.random.random((N, N))

# Create your x-limits. Using two of your unix timestamps you first
# create a list of datetime.datetime objects using map.
x_lims = list(map(dt.datetime.fromtimestamp, [982376726, 982377321]))

# You can then convert these datetime.datetime objects to the correct
# format for matplotlib to work with.
x_lims = mdates.date2num(x_lims)

# Set some generic y-limits.
y_lims = [0, 100]

fig, ax = plt.subplots()

# Using ax.imshow we set two keyword arguments. The first is extent.
# We give extent the values from x_lims and y_lims above.
# We also set the aspect to "auto" which should set the plot up nicely.
ax.imshow(arr, extent = [x_lims[0], x_lims[1],  y_lims[0], y_lims[1]], 
          aspect='auto')

# We tell Matplotlib that the x-axis is filled with datetime data, 
# this converts it from a float (which is the output of date2num) 
# into a nice datetime string.
ax.xaxis_date()

# We can use a DateFormatter to choose how this datetime string will look.
# I have chosen HH:MM:SS though you could add DD/MM/YY if you had data
# over different days.
date_format = mdates.DateFormatter('%H:%M:%S')

ax.xaxis.set_major_formatter(date_format)

# This simply sets the x-axis data to diagonal so it fits better.
fig.autofmt_xdate()

plt.show()

Example plot

关于python - 带有 imshow 的 matplotlib 图的 x 轴日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23139595/

相关文章:

python - 使用 matplotlib 和 basemap 绘制带有极坐标投影的奇怪等值线图

c# - 解析时使 DateTime 的天前导零可选

javascript - EXTJS Ext.util.Format.date 自动日期转换

php - 在 php.ini 文件中设置 PHP 的时区

Python Pandas 绘制标题名称传递字符串

python - pylab.X 和 pylab.plot.X

python - 如何在Python中计算非中心f分布的逆?

python - 如何在解析时使用 gmail api 将邮件标记为已读?

python - 类型错误 : sequence of byte string values expected, 找到类型 str 的值

python - python中的网格抽取