I am creating a facet plot with the seaborn library with: I would like ALL subplots to have scientific notation. Using Seaborn version 0.11.2 Answer Since the axes are not shared, the format can be set by iterating through each axes. This answer shows how to set the tick label format when x and y are shared. Tested in python
Tag: relplot
How to plot data from multiple dataframes with seaborn relplot
I want to plot two lines on the same set of axes. It seems sns.relplot is creating a facetted figure, and I don’t know how to specify that I want the second line on the same facet as the first. Here’s a MWE How do I get the red and blue lines on the same plot? I’ve not had luck