Skip to content

Instantly share code, notes, and snippets.

@kapadia
Created May 28, 2015 21:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kapadia/432ad8962b44a7a39c84 to your computer and use it in GitHub Desktop.
Save kapadia/432ad8962b44a7a39c84 to your computer and use it in GitHub Desktop.
g = sns.pairplot(df[(np.abs(df.wx) < 2) & (np.abs(df.wy) < 2) & (np.abs(df.wz) < 2)], vars=['motion_blur', 'wx', 'wy', 'wz'], plot_kws={'alpha': 0.2})
for ax in g.axes[-1, :]:
ax.set_xticklabels(ax.get_xticks(), rotation=40)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment