Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Matplotlib Articles
Page 23 of 91
How to plot a line in Matplotlib with an interval at each data point?
To plot a line in Matplotlib with an interval at each data point, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Make an array of means and standard deviations.Plot means using plot() method.Fill the area between means+stds and means-stds, alpha=0.7 and color='yellow'.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 means = np.array([3, 5, 1, 8, 4, 6]) stds = np.array([1.3, 2.6, 0.78, 3.01, 2.32, 2.9]) plt.plot(means, color='red', lw=7) plt.fill_between(range(6), means - stds, means ...
Read MoreHow to create a line chart using Matplotlib?
To create a line chart using matplotlib, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Make lists of years and population growth.Plot years and population on the line using plot() method.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 years = [1901, 1911, 1921, 1931, 1941, 1951, 1961, 1971, 1981, 1991, 2001, 2011] population = [237.4, 238.4, 252.09, 251.31, 278.98, 318.66, 361.09, 439.23, 548.16, 683.33, 846.42, 1028.74] plt.plot(years, population, color='red', marker='o') plt.show()Output
Read MoreHow to use different markers for different points in a Pylab scatter plot(Matplotlib)?
To use different markers for different points in a Pylab (Pyplot) scatter plot, we can use the following steps −Set the figure size and adjust the padding between and around the subplots.Initialize a variable, N, for number of sample data.Create x and y random data points.Make a list of markers.Zip the x, y and markers.Iterate the zipper objects and plot the data points with different markers.To display the figure, use show() method.Exampleimport numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True N = 10 x = np.random.rand(N) y = np.random.rand(N) ...
Read MoreHow to show an image in Matplotlib in different colors with different channels?
To slice an image into Red, Green and Blue channels with misc.imread, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Read an image from a file into an array.Make lists of colormaps and titles.Create a figure and a set of subplots.Zip the axes, images, titles and colormaps.Iterate zipped objs and set the title of each channel image.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 image = plt.imread('bird.png') titles = ['With red channel', 'With green channel', 'With blue channel'] cmaps ...
Read MoreHow to pixelate a square image to 256 big pixels with Python Matplotlib?
To pixelate a square image to 256 big pixels with Python, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Open and identify the given image file.Resize the image samples.Make resultant images and resize them.Save the resultant figure.Examplefrom PIL import Image from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True img = Image.open("bird.png") imgSmall = img.resize((16, 16), resample=Image.BILINEAR) result = imgSmall.resize(img.size, Image.NEAREST) result.save('result.png')Input ImageOutput Image
Read MoreHow to animate a Seaborn heatmap or correlation matrix(Matplotlib)?
To animate a Seaborn heatmap or correlation matrix, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create a new figure or activate an existing figure.Make a dimension tuple.Make a Seaborn heatmap.Create an init() method for the first heatmap.Use FuncAnimation() class to make an animation by repeatedly calling a function animate that will create a random dataset and create a heatmap.To display the figure, use show() method.Exampleimport numpy as np import seaborn as sns import matplotlib.pyplot as plt from matplotlib import animation plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True ...
Read MoreHow to turn off transparency in Matplotlib's 3D Scatter plot?
To turn off transparency in Matplotlib's 3D scatter plot, we can use depthshade to shade the scatter markers to give the appearance of depth.StepsSet the figure size and adjust the padding between and around the subplots.Create a new figure or activate an existing figure.Add an ax to the figure as part of a subplot arrangement.Create random data points x, y and z using numpy.Use scatter method to plot x, y and z data points on 3D axes with depthshade=False.To display the figure, use show() methpod.Exampleimport numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] ...
Read MoreHow to plot the outline of the outer edges on a Matplotlib line in Python?
To plot the outline of the outer edges on a Matplotlib in Python, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create x and y data points using numpy.Plot x and y data points with linewidth set to 10 and 5, to get the visible outline edges.To display the figure, use show() method.Exampleimport numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.linspace(-10, 10, 100) y = np.sin(x) plt.plot(x, y, lw=10, color='red') plt.plot(x, y, lw=5, color='yellow') plt.show()Output
Read MoreHow to merge two existing Matplotlib plots into one plot?
To merge two existing matplotlib plots into one plot, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create x, y1 and y2 data points using numpy.Plot (x, y1) and (x, y2) points using plot() method.Get the xy data points of the current axes.Use argsort() to return the indices that would sort an array.Append x and y data points of each plot.Plot X and Y data points at the 2nd index subplot.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"] ...
Read MoreHow does imshow handle the alpha channel with an M x N x 4 input?(Matplotlib)
Let's take an example to see how imshow() handles the alpha channel with an M×N×4 input.StepsSet the figure size and adjust the padding between and around the subplots.Return a new array of given shape and type, filled with 1's.Handle the alpha channel.Display the data as an image, i.e., on a 2D regular raster.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 d = np.ones((100, 100, 4), dtype=np.uint8)*255 d[:, :, 1] = np.linspace(0, 255, num=100) plt.imshow(d) plt.show()Output
Read More