Skip to content

Instantly share code, notes, and snippets.

@alaindomissy
alaindomissy / equalitylines_for_sns_pairplot_grid.ipynb
Created November 25, 2017 04:43
add equality lines (y=x) for subplots in an sns pairplot grid
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@alaindomissy
alaindomissy / py2_py3_compatibility_imports_template
Created August 23, 2017 18:12
python2 python3 compatibility imports template
#!/usr/bin/env python
# transitionning to python2/python3 support
# these two are really a minimum
from __future__ import print_function
from __future__ import division
# uncomment from this compatibility import list, as py3/py2 support progresses
@alaindomissy
alaindomissy / gist:e2d505738ef8de0b125a
Created July 17, 2014 01:56
Intro to Panda Exercise 6
std_and=data[data.rain & data.snow].mean_temp.std()
std_xor=data[data.rain ^ data.snow].mean_temp.std()
print std_and, std_xor, std_and > std_xor