Enable plotting of timedeltas · Issue #8869 · matplotlib/matplotlib · GitHub
Skip to content

Enable plotting of timedeltas #8869

Description

@dstansby

This is a general issue to track progress in enabling the plotting of timedelta objects. The eventual aim is for code like this to work:

import matplotlib.pyplot as plt
from datetime import timedelta

x = [1, 2]
y = [timedelta(seconds=1), timedelta(seconds=2)]
fig, ax = plt.subplots()
ax.scatter(x, y)
plt.show()

TODO

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions