[CentralOH] 2012年-11月-05日 道場
jep200404 at columbus.rr.com
jep200404 at columbus.rr.com
Tue Nov 6 04:44:07 CET 2012
pandas[2] is _awesome_.
Someone recently blasted through much of "Python for Data Analysis"[1].
pandas teaser:
import pandas.io.data as web
google = web.get_data_yahoo("GOOG")
google["Close"].describe()
close = google.Close
close["2009-11"]
google.pct_change().abs().sort_index(by="Close", ascending=False)[:10]
close - close.mean()
close.skew()
close.quantile(0.95)
# close.pct_change().sort()
ipython is nifty also
http://ipython.org/
Practical Vim: Edit Text at the Speed of Thought
XY highly recommends this book.
http://pragprog.com/book/dnvim/practical-vim
McIlroy v Knuth:
http://www.leancrew.com/all-this/2011/12/more-shell-less-egg/
which reminds me of my ugly code that I posted.
PiCrust: I/O expander for Raspberry Pi
http://joewalnes.com/2012/10/24/hello-picrust-connect-things-to-your-raspberry-pi/
http://picru.st/
Small USB flash drive:
http://www.sandisk.com/products/usb/drives/cruzer-fit/?capacity=32GB
http://www.microcenter.com/product/398489/Cruzer_Fit_16GB_USB_20_Flash_Drive_SDCZ33-016G-B35
This dojo was more interesting than usual.
[1] Python for Data Analysis
Wes McKinney
O'Reilly
http://shop.oreilly.com/product/0636920023784.do
[2] http://pypi.python.org/pypi/pandas
http://pandas.pydata.org/
Thank you Mr. McKinney
More information about the CentralOH
mailing list