Annotate Text Arrow

PythonPythonBeginner
Practice Now

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

Introduction

This tutorial will guide you through creating an annotated scatter plot with a text arrow using Matplotlib in Python.

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`"]) matplotlib(("`Matplotlib`")) -.-> matplotlib/BasicConceptsGroup(["`Basic Concepts`"]) matplotlib(("`Matplotlib`")) -.-> matplotlib/PlottingDataGroup(["`Plotting Data`"]) 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`") matplotlib/BasicConceptsGroup -.-> matplotlib/importing_matplotlib("`Importing Matplotlib`") matplotlib/BasicConceptsGroup -.-> matplotlib/figures_axes("`Understanding Figures and Axes`") matplotlib/PlottingDataGroup -.-> matplotlib/scatter_plots("`Scatter Plots`") python/BasicConceptsGroup -.-> python/variables_data_types("`Variables and Data Types`") python/ControlFlowGroup -.-> python/for_loops("`For Loops`") 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/PythonStandardLibraryGroup -.-> python/data_collections("`Data Collections`") 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-48544{{"`Annotate Text Arrow`"}} matplotlib/importing_matplotlib -.-> lab-48544{{"`Annotate Text Arrow`"}} matplotlib/figures_axes -.-> lab-48544{{"`Annotate Text Arrow`"}} matplotlib/scatter_plots -.-> lab-48544{{"`Annotate Text Arrow`"}} python/variables_data_types -.-> lab-48544{{"`Annotate Text Arrow`"}} python/for_loops -.-> lab-48544{{"`Annotate Text Arrow`"}} python/tuples -.-> lab-48544{{"`Annotate Text Arrow`"}} python/importing_modules -.-> lab-48544{{"`Annotate Text Arrow`"}} python/standard_libraries -.-> lab-48544{{"`Annotate Text Arrow`"}} python/math_random -.-> lab-48544{{"`Annotate Text Arrow`"}} python/data_collections -.-> lab-48544{{"`Annotate Text Arrow`"}} python/numerical_computing -.-> lab-48544{{"`Annotate Text Arrow`"}} python/data_visualization -.-> lab-48544{{"`Annotate Text Arrow`"}} python/build_in_functions -.-> lab-48544{{"`Annotate Text Arrow`"}} end

Import libraries and generate random data

First, we need to import the necessary libraries and generate some random data for our scatter plot.

import matplotlib.pyplot as plt
import numpy as np

## Fixing random state for reproducibility
np.random.seed(19680801)

fig, ax = plt.subplots(figsize=(5, 5))
ax.set_aspect(1)

x1 = -1 + np.random.randn(100)
y1 = -1 + np.random.randn(100)
x2 = 1. + np.random.randn(100)
y2 = 1. + np.random.randn(100)

ax.scatter(x1, y1, color="r")
ax.scatter(x2, y2, color="g")

Add text annotations to the plot

Next, we'll add text annotations to the plot using the ax.text() function. We'll create two annotations, one for "Sample A" and one for "Sample B".

bbox_props = dict(boxstyle="round", fc="w", ec="0.5", alpha=0.9)
ax.text(-2, -2, "Sample A", ha="center", va="center", size=20,
        bbox=bbox_props)
ax.text(2, 2, "Sample B", ha="center", va="center", size=20,
        bbox=bbox_props)

Add a text arrow to indicate direction

To indicate the direction of the data, we'll add a text arrow using the ax.text() function and the bbox parameter with the boxstyle set to "rarrow".

bbox_props = dict(boxstyle="rarrow", fc=(0.8, 0.9, 0.9), ec="b", lw=2)
t = ax.text(0, 0, "Direction", ha="center", va="center", rotation=45,
            size=15,
            bbox=bbox_props)

bb = t.get_bbox_patch()
bb.set_boxstyle("rarrow", pad=0.6)

Set plot limits and show the plot

Finally, we'll set the x and y limits of the plot and show the plot using the ax.set_xlim(), ax.set_ylim(), and plt.show() functions.

ax.set_xlim(-4, 4)
ax.set_ylim(-4, 4)

plt.show()

Summary

In this tutorial, we learned how to create an annotated scatter plot with a text arrow using Matplotlib in Python. We used the ax.text() function to add annotations and a text arrow to the plot, and the ax.set_xlim(), ax.set_ylim(), and plt.show() functions to set plot limits and show the plot.

Other Python Tutorials you may like