I have this attribute error when I run the program. may I know the reason?
AttributeError: partially initialized module 'seaborn' has no attribute 'distplot' (most likely due to a circular import)
this is the code I wrote
from numpy import random
import matplotlib.pyplot as plt
import seaborn as sns
sns.displot(random.normal(size=1000), hist=False)
plt.show()