HomeLinuxSeaborn Axis Labels

Seaborn Axis Labels


Seaborn” a Python visualization library is used to visualise statistical relationships in datasets and create informative and interesting plots. There are quite a few operations that may be executed/carried out on the graph or plot utilizing numerous features of various Python modules. To specify the axis of the seaborn plot, the “axes.set()”, “matplotlib library” features, and so on. are utilized in Python.

This publish gives numerous methods to set the axis labels of the given seaborn plot. Let’s begin with the next strategies:

Technique 1: Utilizing the “axes.set()” Operate

The “axes.set()” perform is used to set the “x” and “y” labels of the given seaborn plot which might be demonstrated within the under code.

Instance
Following is an instance code:

import seaborn
import matplotlib.pyplot as plt
import pandas
df = pandas.DataFrame({“Day 1”: [7,1,5,6,3,10,5,8],
 “Day 2” : [1,2,8,4,3,9,5,2]})
ax = seaborn.scatterplot(information=df)
ax.set(xlabel=‘Day_1’, ylabel=‘Day-2’)
plt.present()

Within the above code:

  • The libraries named “seaborn”, “matplotlib.pyplot” and “pandas” are imported.
  • The “pd.DataFrame()” perform is used to create the information and retailer it in a variable known as “df”.
  • The “sns.scatterplot()” perform takes the created “information” as its argument and plots a scatter graph.
  • The “ax.set()” perform is used to set the “xlabel” and “ylabel” of the scatter plot.

Output

Within the above output, the axis of the given seaborn plot has been set appropriately.

Technique 2: Utilizing the “matplotlib.pyplot.xlabel()” and “matplotlib.pyplot.ylabel()” Features

The “matplotlib.pyplot.xlabel()” and “matplotlib.pyplot.ylabel()” features of the matplotlib library are used to set the “x” and “y” labels of the seaborn plot.

Instance
Let’s perceive it by way of the next instance:

import seaborn
import matplotlib.pyplot as plt
import pandas
df = pandas.DataFrame({“Day 1”: [7,1,5,6,3,10,5,8],
 “Day 2” : [1,2,8,4,3,9,5,2]})
seaborn.scatterplot(information=df)
plt.xlabel(“Day_1”)
plt.ylabel(“Day-2”)
plt.present()

Within the above strains of code:

  • Firstly, the required libraries are imported.
  • After that, the “sns.scatterplot()” perform takes the enter information created utilizing the “pd.DataFrame()” perform and plots the scatter plot.
  • The “plt.xlabel()” and “plt.ylabel()” perform is used to label the “x” and “y” axes.

Output

This output implies that the axis of the given seaborn plot has been set.

Technique 3: Utilizing the “set_xlabel()” and “set_ylabel()” Features

Matplotlib axes occasion sort objects are returned by a “seaborn” plot. The “set_xlabel()” and “set_ylabel()” features are used to set the “x” and “y” axes labels respectively.

Instance
Right here is an instance code:

import seaborn
import matplotlib.pyplot as plt
import pandas
df = pandas.DataFrame({“Day 1”: [7,1,5,6,3,10,5,8],
 “Day 2” : [1,2,8,4,3,9,5,2]})
z = seaborn.scatterplot(information=df)
z.set_xlabel(“Day_1”)
z.set_ylabel(“Day-2”)
plt.present()

Within the above code block:

  • Recall the mentioned approaches for creating an information body and returning the scatter plot graph.
  • Now, apply the “set_xlabel()” and “set_ylabel()” features to set the labeling of the “x” and “y” axes of the seaborn plot.

Output

As noticed, the axis of the given seaborn plot has been set accordingly.

Conclusion

The “axes.set()” perform, the Matplotlib library features, or the “set_xlabel()” and “set_ylabel()” features are used to set the axes of the plot. These features take the allotted information body values as arguments and set the axis of the seaborn plot accordingly. This publish introduced a number of methods to set the axis of the given seaborn plot.

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments