Skip to content

Instantly share code, notes, and snippets.

@erichooi
Created June 23, 2019 07:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erichooi/994ac5ad75470d730831d24217afa45d to your computer and use it in GitHub Desktop.
Save erichooi/994ac5ad75470d730831d24217afa45d to your computer and use it in GitHub Desktop.
fig, axes = plt.subplots(16, 4)
fig.set_figheight(60)
fig.set_figwidth(20)
fig.subplots_adjust(hspace=0.4, wspace=0.4)
for i in range(len(data.columns)):
row = i // 4
column = i % 4
sns.stripplot(x="label", y=data.columns[i], data=data, ax=axes[row, column]).set_title("{} VS label".format(data.columns[i]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment