import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sb
%matplotlib inline
Description of the code and functionality
input_1
fig = sb.kdeplot(data=melt_df, x=input_1, legend=True, label= "KDE")
fig = sb.rugplot(data=melt_df, x=input_1, height=0.065, legend=False)
fig.figure.suptitle(input_1, fontsize = 18)
plt.xlabel('Score', fontsize=14)
plt.grid(b=True)
plt.legend();