Skip to content

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

License

Notifications You must be signed in to change notification settings

spencerkclark/nc-time-axis

 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Python 100.0%