Thanks to visit codestin.com
Credit goes to www.tutorialspoint.com

Plot Multiple Columns of Pandas DataFrame Using Seaborn



To plot multiple columns of Pandas DataFrame using Seaborn, we can take the following steps −

  • Make a dataframe using Pandas.

  • Plot a bar using Seaborn's barplot() method.

  • Rotate the xticks label by 45 angle.

  • To display the figure, use show() method.

Example

import pandas
import matplotlib.pylab as plt
import seaborn as sns
import numpy as np
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
df = pandas.DataFrame({"X-Axis": [np.random.randint(10) for i in range(10)], "YAxis": [i for i in range(10)]})
bar_plot = sns.barplot(x='X-Axis', y='Y-Axis', data=df)
plt.xticks(rotation=45)
plt.show()

Output

Updated on: 2021-05-08T09:45:03+05:30

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements