In this Seaborn tutorial, you will learn how to plot a Seaborn histplot in Python. Seaborn provides a built-in function sns.histplot()
that is used to plot a histplot.
# import required modules import seaborn as sns import matplotlib.pyplot as plt # load the dataset var = sns.load_dataset('tips') # create a histplot using seaborn sns.histplot(var['total_bill']) # set the title of the plot plt.title('Hist Plot') # save the plot plt.savefig('histplot.png') # show the plot plt.show()
Output:
Free resources to learn advanced skills: AiHints and CodeAllow