# Import libraries import seaborn as sns %matplotlib inline sns.distplot(tips['total_bill']) # Safe to ignore warnings sns.distplot(tips['total_bill'],kde=False,bins=30) # remove the KDE curve # fix the number of bins