Can someone show me how to leave extra space on top of FacetGrid? I'm trying to put a super-header at the beginning of the FacetGrid graph, but in the end I got a super-heading that overlaps the subplot headers due to the very limited edge at the top in the default settings.
thanks
Use the Figure subplots_adjust method to add a place at the beginning of the chart:
subplots_adjust
g = sns.lmplot("x", "y", col="c", data=df) g.fig.suptitle("Title of the plot", size=16) g.fig.subplots_adjust(top=.9)
Source: https://habr.com/ru/post/982809/More articles:Visually hide content, but not pseudo-content - cssCan you access the SBT SettingKey inside the team? - scalavertical line between latex mini channels - markuprewriting / changing relative paths in concatenated css files in gulp -usemin - javascriptUsing Cython to port a C ++ pattern to accept any numpy array - c ++Java Java API Code / Documentation Example - javaHow to handle database rollback in Azure deployment slots? - code-first-migrationsstd :: set :: operator <(const std :: set &) does not use C (), but std :: less () - c ++Display HTML file with JS inside iPython laptop - javascriptGradually find the most used item in the list in R - optimizationAll Articles