Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

`distplot` is a deprecated function and will be removed in a future version

# Use histplot instead of distplot 
# and add keyword args kde=True, stat="density", linewidth=0 
# So:
sns.histplot(a, color="red", label="100% Equities", kde=True, stat="density", linewidth=0)
# Replaces:
sns.distplot(a, color="red", label="100% Equities")
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #deprecated #function #removed #future #version
ADD COMMENT
Topic
Name
6+2 =