Creating Custom Fill Colors for Box Plots

PythonPythonBeginner
Practice Now

This tutorial is from open-source community. Access the source code

Introduction

This tutorial will guide you through the process of creating custom fill colors for box plots using Python Matplotlib. Box plots are a type of graph used to display the distribution of a set of data. They show the median, quartiles, and outliers of the data set. In this tutorial, we will use the boxplot() function in Matplotlib to create two types of box plots (rectangular and notched) and fill them with custom colors.

VM Tips

After the VM startup is done, click the top left corner to switch to the Notebook tab to access Jupyter Notebook for practice.

Sometimes, you may need to wait a few seconds for Jupyter Notebook to finish loading. The validation of operations cannot be automated because of limitations in Jupyter Notebook.

If you face issues during learning, feel free to ask Labby. Provide feedback after the session, and we will promptly resolve the problem for you.


Skills Graph

%%%%{init: {'theme':'neutral'}}%%%% flowchart RL python(("`Python`")) -.-> python/BasicConceptsGroup(["`Basic Concepts`"]) python(("`Python`")) -.-> python/FileHandlingGroup(["`File Handling`"]) matplotlib(("`Matplotlib`")) -.-> matplotlib/BasicConceptsGroup(["`Basic Concepts`"]) matplotlib(("`Matplotlib`")) -.-> matplotlib/PlottingDataGroup(["`Plotting Data`"]) matplotlib(("`Matplotlib`")) -.-> matplotlib/PlotCustomizationGroup(["`Plot Customization`"]) python(("`Python`")) -.-> python/ControlFlowGroup(["`Control Flow`"]) python(("`Python`")) -.-> python/DataStructuresGroup(["`Data Structures`"]) python(("`Python`")) -.-> python/ModulesandPackagesGroup(["`Modules and Packages`"]) python(("`Python`")) -.-> python/PythonStandardLibraryGroup(["`Python Standard Library`"]) python(("`Python`")) -.-> python/DataScienceandMachineLearningGroup(["`Data Science and Machine Learning`"]) python(("`Python`")) -.-> python/FunctionsGroup(["`Functions`"]) python/BasicConceptsGroup -.-> python/comments("`Comments`") python/FileHandlingGroup -.-> python/with_statement("`Using with Statement`") matplotlib/BasicConceptsGroup -.-> matplotlib/importing_matplotlib("`Importing Matplotlib`") matplotlib/BasicConceptsGroup -.-> matplotlib/figures_axes("`Understanding Figures and Axes`") matplotlib/PlottingDataGroup -.-> matplotlib/box_plots("`Box Plots`") matplotlib/PlotCustomizationGroup -.-> matplotlib/grid_config("`Grid Configuration`") python/BasicConceptsGroup -.-> python/booleans("`Booleans`") python/ControlFlowGroup -.-> python/for_loops("`For Loops`") python/ControlFlowGroup -.-> python/list_comprehensions("`List Comprehensions`") python/DataStructuresGroup -.-> python/lists("`Lists`") python/DataStructuresGroup -.-> python/tuples("`Tuples`") python/ModulesandPackagesGroup -.-> python/importing_modules("`Importing Modules`") python/ModulesandPackagesGroup -.-> python/standard_libraries("`Common Standard Libraries`") python/PythonStandardLibraryGroup -.-> python/math_random("`Math and Random`") python/DataScienceandMachineLearningGroup -.-> python/numerical_computing("`Numerical Computing`") python/DataScienceandMachineLearningGroup -.-> python/data_visualization("`Data Visualization`") python/FunctionsGroup -.-> python/build_in_functions("`Build-in Functions`") subgraph Lab Skills python/comments -.-> lab-48588{{"`Creating Custom Fill Colors for Box Plots`"}} python/with_statement -.-> lab-48588{{"`Creating Custom Fill Colors for Box Plots`"}} matplotlib/importing_matplotlib -.-> lab-48588{{"`Creating Custom Fill Colors for Box Plots`"}} matplotlib/figures_axes -.-> lab-48588{{"`Creating Custom Fill Colors for Box Plots`"}} matplotlib/box_plots -.-> lab-48588{{"`Creating Custom Fill Colors for Box Plots`"}} matplotlib/grid_config -.-> lab-48588{{"`Creating Custom Fill Colors for Box Plots`"}} python/booleans -.-> lab-48588{{"`Creating Custom Fill Colors for Box Plots`"}} python/for_loops -.-> lab-48588{{"`Creating Custom Fill Colors for Box Plots`"}} python/list_comprehensions -.-> lab-48588{{"`Creating Custom Fill Colors for Box Plots`"}} python/lists -.-> lab-48588{{"`Creating Custom Fill Colors for Box Plots`"}} python/tuples -.-> lab-48588{{"`Creating Custom Fill Colors for Box Plots`"}} python/importing_modules -.-> lab-48588{{"`Creating Custom Fill Colors for Box Plots`"}} python/standard_libraries -.-> lab-48588{{"`Creating Custom Fill Colors for Box Plots`"}} python/math_random -.-> lab-48588{{"`Creating Custom Fill Colors for Box Plots`"}} python/numerical_computing -.-> lab-48588{{"`Creating Custom Fill Colors for Box Plots`"}} python/data_visualization -.-> lab-48588{{"`Creating Custom Fill Colors for Box Plots`"}} python/build_in_functions -.-> lab-48588{{"`Creating Custom Fill Colors for Box Plots`"}} end

Importing Required Libraries

We will start by importing the required libraries. In this example, we will be using numpy and matplotlib.pyplot libraries.

import matplotlib.pyplot as plt
import numpy as np

Creating Random Test Data

Next, we will create random test data using the numpy library. We will generate 3 sets of data, each with a different standard deviation.

np.random.seed(19680801)
all_data = [np.random.normal(0, std, size=100) for std in range(1, 4)]
labels = ['x1', 'x2', 'x3']

Creating Rectangular Box Plot

We will now create a rectangular box plot using the boxplot() function in Matplotlib. We will set the patch_artist parameter to True to fill the box with color.

fig, ax1 = plt.subplots(figsize=(9, 4))
bplot1 = ax1.boxplot(all_data,
                     vert=True,  ## vertical box alignment
                     patch_artist=True,  ## fill with color
                     labels=labels)  ## x-tick labels
ax1.set_title('Rectangular Box Plot')

Creating Notched Box Plot

We will now create a notched box plot with the boxplot() function. We will set the notch parameter to True to create a notched box plot.

fig, ax2 = plt.subplots(figsize=(9, 4))
bplot2 = ax2.boxplot(all_data,
                     notch=True,  ## notch shape
                     vert=True,  ## vertical box alignment
                     patch_artist=True,  ## fill with color
                     labels=labels)  ## x-tick labels
ax2.set_title('Notched Box Plot')

Filling the Box Plots with Custom Colors

Next, we will fill the box plots with custom colors. We will create a list of colors and use a loop to fill each box with a different color.

colors = ['pink', 'lightblue', 'lightgreen']
for bplot in (bplot1, bplot2):
    for patch, color in zip(bplot['boxes'], colors):
        patch.set_facecolor(color)

Adding Horizontal Grid Lines

Finally, we will add horizontal grid lines to the box plots using the yaxis.grid() function.

for ax in [ax1, ax2]:
    ax.yaxis.grid(True)
    ax.set_xlabel('Three Separate Samples')
    ax.set_ylabel('Observed Values')

plt.show()

Summary

In this tutorial, we learned how to create custom fill colors for box plots using Python Matplotlib. We started by importing the required libraries, creating random test data, and then creating rectangular and notched box plots. We then filled the box plots with custom colors and added horizontal grid lines. Box plots are a useful visualization tool for displaying the distribution of data and custom fill colors can be used to make them more visually appealing.

Other Python Tutorials you may like