Matplotlib - Seaborn Integration
What will be the output of this code snippet?
import seaborn as sns
import matplotlib.pyplot as plt
sns.set_style('darkgrid')
sns.histplot(data=sns.load_dataset('tips'), x='total_bill')
plt.xlabel('Total Bill Amount')
plt.show()