Setting Default Y-Axis Tickels on the Right

PythonPythonBeginner
Practice Now

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

Introduction

In this tutorial, we will learn how to set the default y-axis tick labels on the right side of the plot using Matplotlib. By default, the y-axis tick labels are placed on the left side of the plot. However, sometimes it might be more suitable to have them on the right side instead.

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 matplotlib(("`Matplotlib`")) -.-> matplotlib/BasicConceptsGroup(["`Basic Concepts`"]) matplotlib(("`Matplotlib`")) -.-> matplotlib/PlottingDataGroup(["`Plotting Data`"]) matplotlib(("`Matplotlib`")) -.-> matplotlib/AdvancedTopicsGroup(["`Advanced Topics`"]) python(("`Python`")) -.-> python/BasicConceptsGroup(["`Basic Concepts`"]) python(("`Python`")) -.-> python/DataStructuresGroup(["`Data Structures`"]) python(("`Python`")) -.-> python/ModulesandPackagesGroup(["`Modules and Packages`"]) python(("`Python`")) -.-> python/DataScienceandMachineLearningGroup(["`Data Science and Machine Learning`"]) matplotlib/BasicConceptsGroup -.-> matplotlib/importing_matplotlib("`Importing Matplotlib`") matplotlib/BasicConceptsGroup -.-> matplotlib/figures_axes("`Understanding Figures and Axes`") matplotlib/PlottingDataGroup -.-> matplotlib/line_plots("`Line Plots`") matplotlib/AdvancedTopicsGroup -.-> matplotlib/matplotlib_config("`Customizing Matplotlib Configurations`") python/BasicConceptsGroup -.-> python/booleans("`Booleans`") python/DataStructuresGroup -.-> python/lists("`Lists`") python/DataStructuresGroup -.-> python/tuples("`Tuples`") python/ModulesandPackagesGroup -.-> python/importing_modules("`Importing Modules`") python/DataScienceandMachineLearningGroup -.-> python/numerical_computing("`Numerical Computing`") python/DataScienceandMachineLearningGroup -.-> python/data_visualization("`Data Visualization`") subgraph Lab Skills matplotlib/importing_matplotlib -.-> lab-48988{{"`Setting Default Y-Axis Tickels on the Right`"}} matplotlib/figures_axes -.-> lab-48988{{"`Setting Default Y-Axis Tickels on the Right`"}} matplotlib/line_plots -.-> lab-48988{{"`Setting Default Y-Axis Tickels on the Right`"}} matplotlib/matplotlib_config -.-> lab-48988{{"`Setting Default Y-Axis Tickels on the Right`"}} python/booleans -.-> lab-48988{{"`Setting Default Y-Axis Tickels on the Right`"}} python/lists -.-> lab-48988{{"`Setting Default Y-Axis Tickels on the Right`"}} python/tuples -.-> lab-48988{{"`Setting Default Y-Axis Tickels on the Right`"}} python/importing_modules -.-> lab-48988{{"`Setting Default Y-Axis Tickels on the Right`"}} python/numerical_computing -.-> lab-48988{{"`Setting Default Y-Axis Tickels on the Right`"}} python/data_visualization -.-> lab-48988{{"`Setting Default Y-Axis Tickels on the Right`"}} end

Import the necessary libraries and modules

Before we start, we need to import the necessary libraries and modules. In this tutorial, we will be using Matplotlib and NumPy.

import matplotlib.pyplot as plt
import numpy as np

Set the default y-axis tick labels on the right

We can set the default y-axis tick labels on the right side of the plot using the following code:

plt.rcParams['ytick.right'] = plt.rcParams['ytick.labelright'] = True
plt.rcParams['ytick.left'] = plt.rcParams['ytick.labelleft'] = False

Create a sample plot

Let's create a sample plot to see how it looks with the y-axis tick labels on the right side.

x = np.arange(10)

fig, (ax0, ax1) = plt.subplots(2, 1, sharex=True, figsize=(6, 6))

ax0.plot(x)
ax0.yaxis.tick_left()

ax1.plot(x)

plt.show()

Interpret the results

In the resulting plot, we can see that the y-axis tick labels are on the right side instead of the left side. The first plot has the y-axis tick labels on the left side because we specified it using the ax0.yaxis.tick_left() code. The second plot has the y-axis tick labels on the right side because we set the default y-axis tick labels on the right side using the code in Step 2.

Summary

In this tutorial, we learned how to set the default y-axis tick labels on the right side of the plot using Matplotlib. This can be useful when we want to emphasize the right side of the plot or when we have multiple plots and want the y-axis tick labels to be consistent across all plots.

Other Python Tutorials you may like