Created
July 17, 2014 01:56
-
-
Save alaindomissy/e2d505738ef8de0b125a to your computer and use it in GitHub Desktop.
Intro to Panda Exercise 6
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment