jswhit / nc-time-axis

Provides support for non-gregorian datetimes in matplotlib based on the cftime package

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

nc-time-axis

Travis Coveralls

Support for cftime axis in matplotlib.

See also

Installation

conda install -c conda-forge nc-time-axis

Example Code

import random

import matplotlib.pyplot as plt
import nc_time_axis
import cftime

d_time = [cftime.datetime(year=2017, month=2, day=n) for n in range(1, 31)]
c_d_time = [nc_time_axis.CalendarDateTime(item, "360_day") for item in d_time]
temperatures = [round(random.uniform(0, 12), 3) for _ in range(len(c_d_time))]

plt.plot(c_d_time, temperatures)
plt.margins(0.1)
plt.ylim(0, 12)
plt.xlabel("Date")
plt.ylabel("Temperature")
plt.show()

example_plot.png

About

Provides support for non-gregorian datetimes in matplotlib based on the cftime package

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 100.0%