Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |