About 189,000 results
Open links in new tab
  1. matplotlib.pyplot.plot — Matplotlib 3.10.3 documentation

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

  2. python - How to draw a line with matplotlib? - Stack Overflow

    Apr 7, 2016 · I cannot find a way to draw an arbitrary line with matplotlib Python library. It allows to draw horizontal and vertical lines (with matplotlib.pyplot.axhline and matplotlib.pyplot.axvline, for example), but i do not see how to draw a line through two given points (x1, y1) and (x2, y2).

  3. Line chart in Matplotlib - Python - GeeksforGeeks

    Aug 13, 2024 · Line charts are used to represent the relation between two data X and Y on a different axis. In this article, we will learn about line charts and matplotlib simple line plots in Python.

  4. Matplotlib Line - W3Schools

    You can use the keyword argument linestyle, or shorter ls, to change the style of the plotted line: The line style can be written in a shorter syntax: linestyle can be written as ls. dotted can be written as :. dashed can be written as --. You can choose any of these styles: '-.'

  5. Matplotlib Plot A Line (Detailed Guide) - Python Guides

    Aug 10, 2021 · You can plot a horizontal line in matplotlib python by either using the plot () function and giving a vector of the same values as the y-axis value-list or by using the axhline () function of matplotlib.pyplot that accepts only the constant y value.

  6. Line Plots in MatplotLib with Python Tutorial | DataCamp

    Dec 13, 2024 · This hands-on tutorial dives deep into creating and customizing line plots with Matplotlib, a powerful data visualization library in Python.

  7. Matplotlib Line Plot - Tutorial and Examples - Stack Abuse

    Nov 22, 2023 · To plot a line plot in Matplotlib, you use the generic plot() function from the PyPlot instance. There's no specific lineplot() function - the generic one automatically plots using lines or markers. Let's make our own small dataset to work with: This results in a simple line plot:

  8. Matplotlib Line - Python Tutorial

    Matplotlib allows you to create and customize line plots, which are one of the most commonly used visualizations for continuous data. Here's a guide on how to plot lines and customize them in Matplotlib.

  9. Matplotlib - Plot line - Python Examples

    To plot line using Matplotlib, you can use plot () function in matplotlib.pyplot. Pass points on the X and Y axis in arrays as arguments to plot () function, and a line plot is drawn.

  10. Matplotlib Line Chart - Python Tutorial

    Matplotlib is a Python module for plotting. Line charts are one of the many chart types it can create. First import matplotlib and numpy, these are useful for charting. You can use the plot (x,y) method to create a line chart. The plot () method also works for other types of line charts.

Refresh