how can I make a loop to plot figure of each column?? i want to draw the graph of each column in python so i can see the outlier of each column
for i in d:
if d[i].dtypes!="object":
print (sns.distplot(d[i]))
how can I make a loop to plot figure of each column?? i want to draw the graph of each column in python so i can see the outlier of each column
for i in d:
if d[i].dtypes!="object":
print (sns.distplot(d[i]))