Found 1034 Articles for Matplotlib

How to extract only the month and day from a datetime object in Python?

Rishikesh Kumar Rishi
Updated on 23-Sep-2021 08:51:27

1K+ Views

To extract only the month and day from a datetime object in Python, we can use the DateFormatter() class.stepsSet the figure size and adjust the padding between and around the subplots.Make a dataframe, df, of two-dimensional, size-mutable, potentially heterogeneous tabular data.Create a figure and a set of subplots.Plot the dataframe using plot() method.Set the axis formatter, extract month and day.To display the figure, use show() method.Exampleimport numpy as np import pandas as pd from matplotlib import pyplot as plt, dates plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True df = pd.DataFrame(dict(time=list(pd.date_range("2021-01-01 12:00:00", periods=10)), speed=np.linspace(1, 10, 10))) fig, ax = ... Read More

How to remove the first and last ticks label of each Y-axis subplot in Matplotlib?

Rishikesh Kumar Rishi
Updated on 23-Sep-2021 08:56:18

2K+ Views

To remove the first and last ticks label of each Y-axis subplot, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create a figure and a set of subplots.Iterate the axes and set the first and last ticklabel's visible=False.To display the figure, use show() method.Exampleimport matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True fig, ax = plt.subplots(2, sharex=True) for a in ax:    plt.setp(a.get_yticklabels()[0], visible=False)    plt.setp(a.get_yticklabels()[-1], visible=False) plt.show()OutputRead More

How to create a surface plot from a greyscale image with Matplotlib?

Rishikesh Kumar Rishi
Updated on 23-Sep-2021 08:57:42

981 Views

To create a surface plot from a grayscale image with matplotlib, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create random data points using Numpy.Get the xx and yy data points from a 2d image data raster.Create a new figure or activate an existing figure.Get the current axis of the plot and make it 3d projection axes.Create a surface plot with cmap='gray'.To display the figure, use show() method.Exampleimport numpy as np import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True data = np.random.rand(5, 5) xx, ... Read More

How to draw a filled arc in Matplotlib?

Rishikesh Kumar Rishi
Updated on 23-Sep-2021 09:12:31

761 Views

To draw a filled arc in matplotlib, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create a figure and a set of subplots.Initialize two variables, r, yoff.Create x and y data points using Numpy.Fill the area between x and y plots.Set the axis aspect and draw the figure canvas.To display the figure, use show() method.Exampleimport matplotlib.pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True fg, ax = plt.subplots(1, 1) r = 2. yoff = -1 x = np.arange(-1., 1.05, 0.05) y ... Read More

How to display a sequence of images using Matplotlib?

Rishikesh Kumar Rishi
Updated on 23-Sep-2021 09:19:09

2K+ Views

To display a sequence of images using Matplotlib, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Make a list of images that have to be drawn.Turn off the axes.Iterate the images and redraw over the axes.Take a pause after each draw.Exampleimport matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True images = ['opera.jpg', 'mountain.jpg', '9.jpg'] plt.axis('off') img = None for f in images:    im = plt.imread(f)    if img is None:       img = plt.imshow(im)       plt.pause(0.5)    else:     ... Read More

How to get multiple overlapping plots with independent scaling in Matplotlib?

Rishikesh Kumar Rishi
Updated on 23-Sep-2021 09:37:50

3K+ Views

To get multiple overlapping plots with independent scaling in Matplotlib, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create a figure and a set of subplots.Plot a list of data points using plot() method on a seperate Y-axis and overlapping X-axis.Create a twin Axes sharing the X-axis.Plot a list of data points using plot() method on a seperate Y-axis and overlapping X-axis.To display the figure, use show() method.Exampleimport matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True fig, ax1 = plt.subplots() ax1.plot([1, 2, 3, 4, 5], color='red') ... Read More

How to increase the spacing between subplots in Matplotlib with subplot2grid?

Rishikesh Kumar Rishi
Updated on 23-Sep-2021 09:41:06

8K+ Views

To increase the spacing between subplots with subplot2grid, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Add a grid layout to place subplots within a figure.Update the subplot parameters of the grid.Add a subplot to the current figure.To display the figure, use show() method.Examplefrom matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True ax = plt.GridSpec(2, 2) ax.update(wspace=0.5, hspace=0.5) ax1 = plt.subplot(ax[0, :]) ax2 = plt.subplot(ax[1, 0]) ax3 = plt.subplot(ax[1, 1]) plt.show()Output

How to get an interactive plot of a pyplot when using PyCharm?

Rishikesh Kumar Rishi
Updated on 23-Sep-2021 09:44:35

3K+ Views

To get an interactive plot of a pyplot when using PyCharm, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Set the background style.Plot the data on the axes.To display the figure, use show() method.Exampleimport matplotlib as mpl import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True mpl.use('Qt5Agg') plt.plot(range(10)) plt.show()Output

How to find the matplotlib style name?

Rishikesh Kumar Rishi
Updated on 23-Sep-2021 10:23:19

129 Views

To find the matplotlib style name, we can take the following steps −import matplotlib.pyplot as pltprint(plt.style.library)Exampleimport matplotlib.pyplot as plt print(plt.style.library)Output{'bmh': RcParams({'axes.edgecolor': '#bcbcbc',    'axes.facecolor': '#eeeeee',    'axes.grid': True,    'axes.labelsize': 'large', 'axes.prop_cycle': cycler('color', ['#348ABD', '#A60628', '#7A68A6',       '#467821', '#D55E00', '#CC79A7', '#56B4E9', '#009E73', '#F0E442', '#0072B2']),    'axes.titlesize': 'x-large',    'grid.color': '#b2b2b2',    'grid.linestyle': '--',    'grid.linewidth': 0.5,    'legend.fancybox': True,    'lines.linewidth': 2.0,    'mathtext.fontset': 'cm',    'patch.antialiased': True,    'patch.edgecolor': '#eeeeee',    'patch.facecolor': 'blue',    'patch.linewidth': 0.5,    'text.hinting_factor': 8,    'xtick.direction': 'in',    'ytick.direction': 'in'}), 'classic': RcParams({'_internal.classic_mode': True,    'agg.path.chunksize': 0, ... Read More

How to change the color and add grid lines to a Python Matplotlib surface plot?

Rishikesh Kumar Rishi
Updated on 23-Sep-2021 10:27:06

1K+ Views

To change the color and add grid lines to a Python surface plot, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create x, y and h data points using numpy.Create a new figure or activate an existing figure.Get 3D axes object, with figure (from Step 3).Create a surface plot, with orange color, edgecolors and linewidth.Exampleimport numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.arange(-5, 5, 0.25) y = np.arange(-5, 5, 0.25) x, y = np.meshgrid(x, ... Read More

Advertisements