Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created May 30, 2019 13:55
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 NMZivkovic/e645c966fc783ab2a6f3fcaf1d3c10ef to your computer and use it in GitHub Desktop.
Save NMZivkovic/e645c966fc783ab2a6f3fcaf1d3c10ef to your computer and use it in GitHub Desktop.
fig, axes = plt.subplots(nrows=5,ncols=1)
fig.set_size_inches(10, 30)
sb.boxplot(data=data,y="cnt",orient="v",ax=axes[0], palette="Greens")
sb.boxplot(data=data,y="cnt",x="season",orient="v",ax=axes[1], palette="Greens")
sb.boxplot(data=data,y="cnt",x="hr",orient="v",ax=axes[2], palette="Greens")
sb.boxplot(data=data,y="cnt",x="yr",orient="v",ax=axes[3], palette="Greens")
sb.boxplot(data=data,y="cnt",x="workingday",orient="v",ax=axes[4], palette="Greens")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment