Get your
own Python
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
from numpy import random import matplotlib.pyplot as plt import seaborn as sns x = random.zipf(a=2, size=1000) sns.displot(x[x<10]) plt.show()