ऐसा लगता है कि आपके पास प्रारंभिक समय की कुछ श्रृंखलाएं हैं और डेटाटाइम रोकें।
उस स्थिति में, चीजों को साजिश करने के लिए बस bar
का उपयोग करें, और अक्षरों की तारीखों को matplotlib बताएं।
समय प्राप्त करने के लिए, आप इस तथ्य का फायदा उठा सकते हैं कि matplotlib का आंतरिक दिनांक प्रारूप एक फ्लोट है जहां प्रत्येक पूर्णांक उस दिन के 0:00 से मेल खाता है। इसलिए, समय प्राप्त करने के लिए, हम केवल times = dates % 1
कर सकते हैं।
एक उदाहरण के रूप (इस का 90% पैदा कर रहा है और तारीखें जोड़ तोड़ अंकन bar
करने के लिए सिर्फ एक कॉल है।।):
import datetime as dt
import numpy as np
import matplotlib.pyplot as plt
import matplotlib as mpl
def main():
start, stop = dt.datetime(2012,3,1), dt.datetime(2012,4,1)
fig, ax = plt.subplots()
for color in ['blue', 'red', 'green']:
starts, stops = generate_data(start, stop)
plot_durations(starts, stops, ax, facecolor=color, alpha=0.5)
plt.show()
def plot_durations(starts, stops, ax=None, **kwargs):
if ax is None:
ax = plt.gca()
# Make the default alignment center, unless specified otherwise
kwargs['align'] = kwargs.get('align', 'center')
# Convert things to matplotlib's internal date format...
starts, stops = mpl.dates.date2num(starts), mpl.dates.date2num(stops)
# Break things into start days and start times
start_times = starts % 1
start_days = starts - start_times
durations = stops - starts
start_times += int(starts[0]) # So that we have a valid date...
# Plot the bars
artist = ax.bar(start_days, durations, bottom=start_times, **kwargs)
# Tell matplotlib to treat the axes as dates...
ax.xaxis_date()
ax.yaxis_date()
ax.figure.autofmt_xdate()
return artist
def generate_data(start, stop):
"""Generate some random data..."""
# Make a series of events 1 day apart
starts = mpl.dates.drange(start, stop, dt.timedelta(days=1))
# Vary the datetimes so that they occur at random times
# Remember, 1.0 is equivalent to 1 day in this case...
starts += np.random.random(starts.size)
# Make some random stopping times...
stops = starts + 0.2 * np.random.random(starts.size)
# Convert back to datetime objects...
return mpl.dates.num2date(starts), mpl.dates.num2date(stops)
if __name__ == '__main__':
main()
एक तरफ ध्यान दें पर, घटनाओं के लिए कि एक दिन से शुरू करें और अगले पर अंत करें, यह अगले दिन में वाई-अक्ष का विस्तार करेगा। यदि आप चाहें तो आप इसे अन्य तरीकों से संभाल सकते हैं, लेकिन मुझे लगता है कि यह सबसे आसान विकल्प है।
वह शानदार जो है! यह वही है जो मैं खोज रहा था और आपने एक महान कोड उदाहरण दिया। धन्यवाद। – brice