I have made a density distribution with the following code:
sns.distplot(df['Amount'], hist=True, kde=True,
color = 'darkblue',
hist_kws={'edgecolor':'black'},
kde_kws={'linewidth': 4})
How can I draw a random sample from this distribution?