We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i.e.
df = sns.load_dataset("penguins").select_dtypes(include=float) f, axs = plt.subplots(1, df.shape[1], figsize=(df.shape[1] * 3, 3), constrained_layout=True) for col, ax in zip(df, axs): sns.histplot(df[col], ax=ax)
A few options:
displot
PairGrid
It should probably support hue, col_wrap, and possibly support putting the data variable on y.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
i.e.
A few options:
displot
with an internal melt (-.5)PairGrid
with an option to make the x or y axis "derived" (-.5)It should probably support hue, col_wrap, and possibly support putting the data variable on y.
The text was updated successfully, but these errors were encountered: