Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

plot cumulative distribution function (cdf) in seaborn

import numpy as np
import seaborn as sns

x = np.random.randn(200)
kwargs = {'cumulative': True}
sns.distplot(x, hist_kws=kwargs, kde_kws=kwargs)
 
PREVIOUS NEXT
Tagged: #plot #cumulative #distribution #function #seaborn
ADD COMMENT
Topic
Name
1+2 =