data analysis and statistics in python using pandas and statsmodels

29
Statistics and Data Analysis in Python with pandas and statsmodels Wes McKinney @wesmckinn NYC Open Statistical Programming Meetup 9/14/2011 Thursday, September 15,

Upload: wesm

Post on 28-Nov-2014

22.309 views

Category:

Technology


0 download

DESCRIPTION

 

TRANSCRIPT

Statistics and Data Analysis in Python with pandas and statsmodels

Wes McKinney @wesmckinn

NYC Open Statistical Programming Meetup9/14/2011

Thursday, September 15,

Talk Overview

• Statistical Computing Big Picture

• Scientific Python Stack

• pandas

• statsmodels

• Ideas for the (near) future

Thursday, September 15,

Who am I?

MIT Math AQR: Quant Finance

Statistics

Back to NYC

Thursday, September 15,

The Big Picture

• Building the “next generation” statistical computing environment

• Making data analysis / statistics more intuitive, flexible, powerful

• Closing the “research-production” gap

Thursday, September 15,

Application areas

• General data munging, manipulation

• Financial modeling and analytics

• Statistical modeling and econometrics

• “Enterprise” / “Big Data” analytics?

Thursday, September 15,

R, the solution?

“R is the most powerful statistical computing language on the planet”

Hadley Wickham (ggplot2, plyr, reshape, ...)

Thursday, September 15,

Easy to miss the point

Thursday, September 15,

R, the solution?

“I have been worried for some time that R isn’t going to provide the base that we’re going to need for statistical computation in the future. (It may well be that the future is already upon us.) ... I have come to the conclusion that rather than ‘fixing’ R, it would be much more productive to simply start over and build something better”

Ross Ihaka (One of creators of R)

Thursday, September 15,

Some of my gripes about R

• Wonky, highly idiosyncratic programming language*

• Poor speed and memory usage

• General purpose libraries and software development tools lacking

• The GPL

* But yes, really great libraries

Thursday, September 15,

R: great libraries and deep connections to academia

Jeff Ryanxts, quantmod

Hadley Wickhamggplot2, plyr, reshape

Example R superstars

Thursday, September 15,

Uniting against common enemies

Thursday, September 15,

“Research-Production” Gap

• Best data analysis / statistics tools: often least well-suited for building production systems

• The “Black Box”: embedding or RPC

• High productivity <=> Low productivity

Thursday, September 15,

• Production: much more than crunching data and making pretty plots

• Code readability, debuggability, maintainability matter a lot in the long run

• Integration with other systems

“Research-Production” Gap

Thursday, September 15,

“Research-Production” Gap

Thursday, September 15,

Thursday, September 15,

My assertion

Python is the best (only?)viable solution to the

Research-Production gap

Thursday, September 15,

Scientific Python Stack

• Incredible growth in libraries and tools over the last 5 years

• NumPy: the cornerstone

• Killer app: IPython

• Cython: C speedups, 80+% less dev time

• Other exciting high-profile projects: scikit-learn, theano, sympy

Thursday, September 15,

Uniting the Python Community

• Fragmentation is a (big) problem / risk

• Statistical libraries need to be able to talk to each other easily

• R’s success: S-Plus legacy + quality CRAN packages built around cohesive base R / data structures

Thursday, September 15,

pandas

• Foundational rich data structures and data analysis tools

• Arrays with labeled axes and support for heterogeneous data

• Similar to R data.frame, but with many more built-in features

• Missing data, time series support

Thursday, September 15,

pandas

• Milestone: 0.4 release 9/12/2011

• Dozens of new features and enhancements

• Completely rewritten docs: pandas.sf.net

• Many more new features planned for the future

Thursday, September 15,

The sleeping dragon

Thursday, September 15,

Little did I know...

Thursday, September 15,

pandas: some key features

• Automatic and explicit data alignment

• Label-based (inc hierarchical) indexing

• GroupBy, pivoting, and reshaping

• Missing data support

• Time series functionality

Thursday, September 15,

Demo time

Thursday, September 15,

statsmodels

• Statistics and econometrics in Python

• Focused on estimation of statistical models

• Regression models (GLS, Robust LM, ...)

• Time series models (AR/ARMA, VAR, Kalman Filter, ...)

• Non-parametric models (e.g. KDE)

Thursday, September 15,

statsmodels

• Development has been largely focused on computation

• Correct, tested results

• In progress: better user interface

• Formula frameworks (e.g. similar to R)

• pandas integration

Thursday, September 15,

Demo time

Thursday, September 15,

Ideas for the future

• ggpy: ggplot2 for Python

• Statistical Python Distribution / Umbrella project

• Interactive GUI widgets to visualize / explore data and statsmodels results

Thursday, September 15,

Thanks

• pandas: http://pandas.sf.net

• statsmodels: http://statsmodels.sf.net

• Twitter: @wesmckinn

• E-mail: wesmckinn (at) gmail (dot) com

• Blog: http://blog.wesmckinney.com

Thursday, September 15,