Show Mean in a Box Plot Using Matplotlib in Python

Rishikesh Kumar Rishi
Updated on 03-Jun-2021 12:48:06

3K+ Views

To show mean in a box plot, we can use showmeans=True in the argument of boxplot() method.StepsSet the figure size and adjust the padding between and around the subplots.Create a random dataset.Create a new figure or activate an existing figure using figure() method.Add an axes to the current figure as a subplot arrangement.Make a box and whisker plot using boxplot() method.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 data = np.random.rand(100, 5) fig = plt.figure() ax = fig.add_subplot(111) bp = ax.boxplot(data, 'd', showmeans=True) plt.show()OutputRead More

Shade Points in Scatter Based on Colormap in Matplotlib

Rishikesh Kumar Rishi
Updated on 03-Jun-2021 12:45:27

636 Views

To shade points in a scatter based on colormap, we can use copper colormap in scatter() method.StepsSet the figure size and adjust the padding between and around the subplots.Create x and y random 100 data points using numpy.Plot scatter points x and y with color=x and colormap=copper.To display the figure, use show() method.Exampleimport numpy as np from matplotlib import pyplot as plt, cm plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.random.rand(100) y = np.random.rand(100) plt.scatter(x, y, c=x, cmap='copper') plt.show()Output

Use Custom PNG Image Marker in a Plot with Matplotlib

Rishikesh Kumar Rishi
Updated on 03-Jun-2021 12:43:25

5K+ Views

To use custome png or jpg i.e an image as a marker in a plot, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Make a paths list to store the directories of images.Make a list (x and y) of points.Using subplots() method, create a figure and a set of subplots.To plot images instead of points, iterate zipped x, y and paths.Instantiate AnnotationBbox() with image and (x, y) points.Put xticks and yticks on both the axes.To display the figure, use show() method.Exampleimport matplotlib.pyplot as plt from matplotlib.offsetbox import OffsetImage, AnnotationBbox ... Read More

Plot 3D Continuous Line in Matplotlib

Rishikesh Kumar Rishi
Updated on 03-Jun-2021 12:41:28

6K+ Views

To plot a 3D continuous line in Matplotlib, 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.Create z data points using x and y data points.Create a new figure or activate an existing figure using figure() method.Add an axes as a subplot arrangement with 3D projection.Plot x, y and z data points using plot() method.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(-4 * np.pi, 4 ... Read More

Change Color and Marker of Each Point Using Seaborn Jointplot

Rishikesh Kumar Rishi
Updated on 03-Jun-2021 12:38:49

1K+ Views

To change the color and marker of each point using Seaborn jointplot, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Load an example dataset from the online repository (requires Internet).Use jointplot() method to plot tips data.Use cla() method to clear the current axes.Make a list of colors and markers for each point.Set the axes labels using set_axis_labels() method.To display the figure, use show() method.Examplefrom matplotlib import pyplot as plt import seaborn as sns import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True tips = sns.load_dataset("tips") g ... Read More

Put Text at the Corner of an Equal Aspect Figure in Python Matplotlib

Rishikesh Kumar Rishi
Updated on 03-Jun-2021 12:37:26

2K+ Views

To put text at the corner of an equal aspect figure 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, using subplots() method.Create x data points using numpy.Plot x on axis ax1, using plot() method.Plot x and 2*x on ax2, using plot() method.To put text in the corner of a figure use annotate() method for different axes.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 fig, axes = plt.subplots(2) x ... Read More

Add Textures to Bars and Wedges in Matplotlib

Rishikesh Kumar Rishi
Updated on 03-Jun-2021 12:35:22

558 Views

To add textures to bars and wedges 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 using figure() method.Add an axes to the figure as part of a subplot arrangement.Make a list of hatches. Bars could be filled with some hatches.Create number bars as equivalent to number of hatches.Use bar() method to plot the bars with different hatch.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 ... Read More

Plot CDF in Matplotlib using Python

Rishikesh Kumar Rishi
Updated on 03-Jun-2021 12:34:02

9K+ Views

To plot cdf in matplotlib in Python, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Initialize a variable N for the number of sample data.Create random data using numpy.Compute the histogram of a set of data with data and bins=10.Find the probability distribution function (pdf).Using pdf (Step 5), calculate cdf.Plot the cdf using plot() method with label "CDF".Place a legend on the plot.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 = 500 ... Read More

Adjust Branch Lengths of a Dendrogram in Matplotlib

Rishikesh Kumar Rishi
Updated on 03-Jun-2021 12:32:56

1K+ Views

To adjust the branch length of a dendrogram in Matplotlib, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Draw random samples (a and b) from a multivariate normal distribution.Join a sequence of arrays along an existing axis, using concatenate() method.Perform hierarchical/agglomerative clustering.Create a new figure or activate an existing figure using figure() method.Add an axes to the figure as part of a subplot arrangement.Plot the hierarchical clustering as a dendrogram using dendrogram() method.To display the figure, use show() method.Examplefrom matplotlib import pyplot as plt from scipy.cluster.hierarchy import dendrogram, linkage import ... Read More

Add Bold Annotated Text in Matplotlib

Rishikesh Kumar Rishi
Updated on 03-Jun-2021 12:31:26

2K+ Views

To add bold annotated text in matplotlib, we can use LaTeX representation for labels.StepsSet the figure size and adjust the padding between and around the subplots.Create x and y data points using numpy.To set the label for each scattered point, make a list of labels.Plot xpoints, ypoints using scatter() method. For color, use xpoints.Iterate zipped labels, xpoints and ypoints.Use annotate() method with bold LaTeX representation insie the for loop.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 xpoints = np.linspace(1, 10, 10) ypoints = np.random.rand(10) labels ... Read More

Advertisements