matplotlib.axes.Axes.plot_date#
- Axes.plot_date(x, y, fmt='o', tz=None, xdate=True, ydate=False, *, data=None, **kwargs)[source]#
 [Deprecated] Plot coercing the axis to treat floats as dates.
Deprecated since version 3.9: This method exists for historic reasons and will be removed in version 3.11.
datetime-like data should directly be plotted usingplot.If you need to plot plain numeric data as Matplotlib date format or need to set a timezone, call
ax.xaxis.axis_date/ax.yaxis.axis_datebeforeplot. SeeAxis.axis_date.
Similar to
plot, this plots y vs. x as lines or markers. However, the axis labels are formatted as dates depending on xdate and ydate. Note thatplotwill work withdatetimeandnumpy.datetime64objects without resorting to this method.- Parameters:
 - x, yarray-like
 The coordinates of the data points. If xdate or ydate is True, the respective values x or y are interpreted as Matplotlib dates.
- fmtstr, optional
 The plot format string. For details, see the corresponding parameter in
plot.- tztimezone string or 
datetime.tzinfo, default:rcParams["timezone"](default:'UTC') The time zone to use in labeling dates.
- xdatebool, default: True
 If True, the x-axis will be interpreted as Matplotlib dates.
- ydatebool, default: False
 If True, the y-axis will be interpreted as Matplotlib dates.
- Returns:
 - list of 
Line2D Objects representing the plotted data.
- list of 
 - Other Parameters:
 - dataindexable object, optional
 If given, the following parameters also accept a string
s, which is interpreted asdata[s]ifsis a key indata:x, y
- **kwargs
 Keyword arguments control the
Line2Dproperties:Property
Description
a filter function, which takes a (m, n, 3) float array and a dpi value, and returns a (m, n, 3) array and two offsets from the bottom left corner of the image
float or None
bool
antialiasedoraabool
BboxBaseor Nonebool
Patch or (Path, Transform) or None
CapStyleor {'butt', 'projecting', 'round'}JoinStyleor {'miter', 'round', 'bevel'}sequence of floats (on/off ink in points) or (None, None)
(2, N) array or two 1D arrays
{'default', 'steps', 'steps-pre', 'steps-mid', 'steps-post'}, default: 'default'
{'full', 'left', 'right', 'bottom', 'top', 'none'}
color or None
str
bool
object
{'-', '--', '-.', ':', '', (offset, on-off-seq), ...}
float
marker style string,
PathorMarkerStylefloat
markersizeormsfloat
None or int or (int, int) or slice or list[int] or float or (float, float) or list[bool]
bool
list of
AbstractPathEffectfloat or callable[[Artist, Event], tuple[bool, dict]]
float
bool
(scale: float, length: float, randomness: float)
bool or None
CapStyleor {'butt', 'projecting', 'round'}JoinStyleor {'miter', 'round', 'bevel'}unknown
str
bool
1D array
1D array
float
See also
matplotlib.datesHelper functions on dates.
matplotlib.dates.date2numConvert dates to num.
matplotlib.dates.num2dateConvert num to dates.
matplotlib.dates.drangeCreate an equally spaced sequence of dates.
Notes
If you are using custom date tickers and formatters, it may be necessary to set the formatters/locators after the call to
plot_date.plot_datewill set the default tick locator toAutoDateLocator(if the tick locator is not already set to aDateLocatorinstance) and the default tick formatter toAutoDateFormatter(if the tick formatter is not already set to aDateFormatterinstance).Deprecated since version 3.9: Use plot instead.