1. time course data on tumor growth

FacetGrid methods see https://seaborn.pydata.org/generated/seaborn.FacetGrid.html
axes methods see https://matplotlib.org/3.2.1/api/axes_api.html

  1. tumor volume data on each cell line

Using distplot, I was not able to set bin size the same between the grids. But the advantage is the ability to customize the hist_kws and kde_kws.

Using displot to unify the binwidth between grids are easy, but I was not able to change the order of the grids. The color theme of the histogram and kde line is hard to change, too.

Here I started plotting subplots individually instead of using a FacetGrid, but controlling distplot bins instead of binwidth is still difficult and not ideal.

Plotting individual subplots as histplot solves the binwidth problem, but the kde line does not extend fully.