About 51,200 results
Open links in new tab
  1. matplotlib.axes.Axes.plot — Matplotlib 3.11.0 documentation

    matplotlib.axes.Axes.plot # Axes.plot(*args, scalex=True, scaley=True, data=None, **kwargs) [source] # Plot y versus x as lines and/or markers. Call signatures:

  2. Introduction to Axes (or Subplots) - Matplotlib

    An Axes typically has a pair of Axis Artists that define the data coordinate system, and include methods to add annotations like x- and y-labels, titles, and legends. Anatomy of a Figure # In the picture …

  3. Matplotlib.axes.Axes.plot() in Python - GeeksforGeeks

    Jul 12, 2025 · Axes.plot () method in Matplotlib is used to plot data on a set of axes. It is primarily used for creating line plots but can be extended for other types of plots, including scatter plots, bar plots, …

  4. Matplotlib.pyplot.axis() in Python - GeeksforGeeks

    Jul 12, 2025 · axis () function in Matplotlib is used to get or set properties of the x- and y-axis in a plot. It provides control over axis limits, aspect ratio and visibility, allowing customization of the plot’s …

  5. Matplotlib Two Y Axes in Python

    Jul 15, 2025 · Learn how to create Matplotlib plots with dual y-axes in Python. Follow step-by-step examples tailored for USA-based data visualization and analytics.

  6. Matplotlib Plotting - W3Schools

    Plotting x and y points The plot() function is used to draw points (markers) in a diagram. By default, the plot() function draws a line from point to point. The function takes parameters for specifying points in …

  7. How to specify values on y axis of a matplotlib plot

    Mar 21, 2025 · How can I specify a different number of values on the y axis different from the number of values on the x axis? And maybe specify them as an interval with 0.005 difference instead of a list?

  8. show origin axis (x,y) in matplotlib plot - Stack Overflow

    Jan 25, 2017 · I have following simple plot, and I would like to display the origin axis (x, y). I already have grid, but I need the x, y axis to be emphasized. this is my code: x = linspace (0.2,10,100) plot (x, ...

  9. How to Create a Secondary Y-Axis in Matplotlib - Python Guides

    Jul 18, 2025 · Learn how to create and customize a secondary y-axis in Matplotlib with practical examples tailored for Python developers in the USA. Enhance your charts.

  10. Axes in Python - Plotly

    Axes in Python How to adjust axes properties in Python - axes titles, styling and coloring axes and grid lines, ticks, tick labels and more.