i would like to plot multiple density functions in one matplotlib plot. I am currently using:
def get_probability(self, df):
df.plot.density()
Now i got multiple plots in seperated windows. How i am able to get multiple density functions in one plot ?
I would be grateful for any help !