एक पाश में axvline कॉलिंग, जैसा कि दूसरों ने सुझाव दिया है, काम करता है, लेकिन क्योंकि असुविधाजनक हो सकता है
- प्रत्येक पंक्ति एक अलग प्लॉट ऑब्जेक्ट है, जिसके कारण आपके पास कई लाइनें होने पर चीजें बहुत धीमी हो जाती हैं।
- जब आप किंवदंती बनाते हैं तो प्रत्येक पंक्ति में एक नई प्रविष्टि होती है, जो वह नहीं हो सकती जो आप चाहते हैं।
इसके बजाय आप निम्नलिखित सुविधा कार्यों का उपयोग कर सकते हैं जो एक ही भूखंड वस्तु के रूप में सभी लाइनें बनाते हैं:
import matplotlib.pyplot as plt
import numpy as np
def axhlines(ys, ax=None, **plot_kwargs):
"""
Draw horizontal lines across plot
:param ys: A scalar, list, or 1D array of vertical offsets
:param ax: The axis (or none to use gca)
:param plot_kwargs: Keyword arguments to be passed to plot
:return: The plot object corresponding to the lines.
"""
if ax is None:
ax = plt.gca()
ys = np.array((ys, ) if np.isscalar(ys) else ys, copy=False)
lims = ax.get_xlim()
y_points = np.repeat(ys[:, None], repeats=3, axis=1).flatten()
x_points = np.repeat(np.array(lims + (np.nan, ))[None, :], repeats=len(ys), axis=0).flatten()
plot = ax.plot(x_points, y_points, scalex = False, **plot_kwargs)
return plot
def axvlines(xs, ax=None, **plot_kwargs):
"""
Draw vertical lines on plot
:param xs: A scalar, list, or 1D array of horizontal offsets
:param ax: The axis (or none to use gca)
:param plot_kwargs: Keyword arguments to be passed to plot
:return: The plot object corresponding to the lines.
"""
if ax is None:
ax = plt.gca()
xs = np.array((xs, ) if np.isscalar(xs) else xs, copy=False)
lims = ax.get_ylim()
x_points = np.repeat(xs[:, None], repeats=3, axis=1).flatten()
y_points = np.repeat(np.array(lims + (np.nan, ))[None, :], repeats=len(xs), axis=0).flatten()
plot = ax.plot(x_points, y_points, scaley = False, **plot_kwargs)
return plot