I'm sure I'm just searching with the wrong keywords here, but I have the following code:
for var in ['lsc596']:
fig, ax = plt.subplots()
plt.title('Distributional shift of {}'.format(var))
for rep in ['2022-06', '2022-07']:
sns.histplot(data[(data.rep_date == rep)&(data.lsc596>0)&(data.lsc596<100)][var], bins = 100,ax=ax, kde=False)
plt.legend(['2022-06', '2022-07'])
plt.show();
Which produces two histograms, one for each month, on the same axes. However, they are also very close to being indistinguishable in colour, and I'm looking for an option that will let me manually change them to be more distinct.