View MLEEstimate-20160510.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View consec.py
This file contains 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
import pandas | |
import glob | |
if __name__ == '__main__': | |
events = pandas.concat([ pandas.read_csv(fn) | |
for fn in glob.glob("event*.csv") ], | |
ignore_index=True) | |
events = events[events.BAT_EVENT_FL=="T"] | |
events["BAT_TEAM_ID"] = events["BAT_TEAM_ID"].replace("MON", "WAS") |
View risk-version.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View MLEEstimate-20150624.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View gist:4654752
This file contains 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
$ brew install python --verbose | |
==> Downloading http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tar.bz2 | |
Already downloaded: /Library/Caches/Homebrew/python-2.7.3.tar.bz2 | |
/usr/bin/tar xf /Library/Caches/Homebrew/python-2.7.3.tar.bz2 | |
==> Downloading patches | |
/usr/bin/curl -f#LA Homebrew 0.9.3 (Ruby 1.8.7-358; Mac OS X 10.8.2) https://gist.github.com/raw/4349132/25662c6b382315b5db67bf949773d76471bbcee7/python-nfs-shutil.diff -o 000-homebrew.diff | |
######################################################################## 100.0% | |
==> Patching | |
/usr/bin/patch -f -p1 -i 000-homebrew.diff | |
patching file Lib/shutil.py |
View gist:4636410
This file contains 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
brew doctor: | |
no problems found. | |
brew --config: | |
HOMEBREW_VERSION: 0.9.3 | |
ORIGIN: https://github.com/mxcl/homebrew | |
HEAD: b8ed4c17395a8e67deea8501928fbfbf52485b21 | |
HOMEBREW_PREFIX: /usr/local | |
HOMEBREW_CELLAR: /usr/local/Cellar |