Matplotlib में टूटे हुए क्षैतिज बार ग्राफ बनाने के लिए, हम निम्नलिखित कदम उठा सकते हैं -
- आकृति का आकार सेट करें और सबप्लॉट के बीच और आसपास पैडिंग समायोजित करें।
- एक आकृति और सबप्लॉट का एक सेट बनाएं।
- आयतों का एक क्षैतिज क्रम प्लॉट करें।
- एक्स और वाई अक्ष सीमा स्केल करें।
- ग्रिड लाइनों को कॉन्फ़िगर करें।
- टूटी हुई सलाखों पर टिप्पणी करें।
- आंकड़ा प्रदर्शित करने के लिए, दिखाएं () . का उपयोग करें विधि।
उदाहरण
import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True fig, ax = plt.subplots() # Horizontal sequence of rectangles ax.broken_barh([(110, 30), (150, 10)], (10, 9), facecolors='tab:blue') ax.broken_barh([(10, 50), (100, 20), (130, 10)], (20, 9), facecolors=('tab:orange', 'tab:green', 'tab:red')) # Scale X and Y axes limits ax.set_ylim(5, 35) ax.set_xlim(0, 200) # Configure the grid lines ax.grid(True) # Annotate the broken bars ax.annotate('race interrupted', (61, 25), xytext=(0.8, 0.9), textcoords='axes fraction', arrowprops=dict(facecolor='black', shrink=0.05), fontsize=16, horizontalalignment='right', verticalalignment='top') plt.show()
आउटपुट
यह निम्नलिखित आउटपुट का उत्पादन करेगा