About 163,000 results
Open links in new tab
  1. matplotlib.axesMatplotlib 3.10.8 documentation

    matplotlib.axes # The Axes class represents one (sub-)plot in a figure. It contains the plotted data, axis ticks, labels, title, legend, etc. Its methods are the main interface for manipulating the plot. Table of …

  2. Plots with different scales — Matplotlib 3.10.8 documentation

    Plots with different scales # Two plots on the same Axes with different left and right scales. The trick is to use two different Axes that share the same x axis. You can use separate matplotlib.ticker …

  3. The histogram (hist) function with multiple data sets - Matplotlib

    The histogram (hist) function with multiple data sets # Plot histogram with multiple sample sets and demonstrate: Use of legend with multiple sample sets Stacked bars Step curve with no fill Data sets …

  4. Create a grouped bar plot in Matplotlib - GeeksforGeeks

    Jul 23, 2025 · By using Matplotlib, we can create grouped bar plots with customization options like colors, labels and spacing to enhance readability and data interpretation. Steps to Create a Grouped …

  5. Histograms — Matplotlib 3.10.8 documentation

    Tags: plot-type: histogram plot-type: histogram2d domain: statistics styling: color component: normalization component: patch References The use of the following functions, methods, classes …

  6. Create multiple subplots using plt.subplotsMatplotlib 3.10.8 ...

    Create multiple subplots using plt.subplots # pyplot.subplots creates a figure and a grid of subplots with a single call, while providing reasonable control over how the individual plots are created. For more …

  7. Violin plot customization — Matplotlib 3.10.8 documentation

    Violin plot customization # This example demonstrates how to fully customize violin plots. The first plot shows the default style by providing only the data. The second plot first limits what Matplotlib draws …

  8. Plotting Histogram in Python using Matplotlib - GeeksforGeeks

    Jan 13, 2026 · Plotting Histogram in Python using Matplotlib Here we will see different methods of Plotting Histogram in Matplotlib in Python: Basic Histogram Customized Histogram with Density Plot …

  9. seaborn.histplot — seaborn 0.13.2 documentation

    color matplotlib color Single color specification for when hue mapping is not used. Otherwise, the plot will try to hook into the matplotlib property cycle. log_scalebool or number, or pair of bools or …

  10. pandas.DataFrame.plot.bar — pandas 3.0.2 documentation

    See also DataFrame.plot.barh Horizontal bar plot. DataFrame.plot Make plots of a DataFrame. matplotlib.pyplot.bar Make a bar plot with matplotlib.