from numpy import random
import matplotlib.pyplot as plt
import seaborn as sns
x = random.rayleigh(scale=1000, size=(2, 3))
sns.distplot(random.rayleigh(size=1000), hist=False)
plt.show()