1 year ago

#386341

test-img

Brankonymous

How to plot histogram difference with seaborn?

I tried to make something like this

    data1 = get_data(param=param1)
    data2 = get_data(param=param2)
    plot1 = sns.histplot(data=data1, x="Value")
    plot2 = sns.histplot(data=data2, x="Value")
 

But couldn't manage to plot difference in count between plot1 and plot2

Is there a way to do it with seaborn? Or is there some other library that will get the job done?

Thanks!

python

seaborn

histogram

0 Answers

Your Answer

Accepted video resources