"- [Python Data Science Handbook](https://jakevdp.github.io/PythonDataScienceHandbook/)<sup>1</sup> by Jake van der Plas\n",
"- [Python Data Science Handbook](https://jakevdp.github.io/PythonDataScienceHandbook/)<sup>1</sup> by\n",
" Jake van der Plas\n",
"\n",
"\n",
"<sup>1</sup> This tutorial borrows heavily from the pandas documentation and the Python Data Science Handbook"
"<sup>1</sup> This tutorial borrows heavily from the pandas documentation and\n",
"the Python Data Science Handbook"
]
]
},
},
{
{
...
@@ -29,6 +27,7 @@
...
@@ -29,6 +27,7 @@
"source": [
"source": [
"%pylab inline\n",
"%pylab inline\n",
"import pandas as pd # pd is the usual abbreviation for pandas\n",
"import pandas as pd # pd is the usual abbreviation for pandas\n",
"import matplotlib.pyplot as plt # matplotlib for plotting\n",
"import seaborn as sns # seaborn is the main plotting library for Pandas\n",
"import seaborn as sns # seaborn is the main plotting library for Pandas\n",
"import statsmodels.api as sm # statsmodels fits linear models to pandas data\n",
"import statsmodels.api as sm # statsmodels fits linear models to pandas data\n",
"import statsmodels.formula.api as smf\n",
"import statsmodels.formula.api as smf\n",
...
@@ -40,22 +39,21 @@
...
@@ -40,22 +39,21 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"## Loading in data"
"> We will mostly be using `seaborn` instead of `matplotlib` for\n",
]
"> visualisation. But `seaborn` is actually an extension to `matplotlib`, so we\n",
},
"> are still using the latter under the hood.\n",
{
"\n",
"cell_type": "markdown",
"## Loading in data\n",
"metadata": {},
"\n",
"source": [
"Pandas supports a wide range of I/O tools to load from text files, binary files,\n",
"Pandas supports a wide range of I/O tools to load from text files, binary files, and SQL databases. You can find a table with all formats [here](http://pandas.pydata.org/pandas-docs/stable/io.html)."
"and SQL databases. You can find a table with all formats\n",
"This loads the data into a [DataFrame](https://pandas.pydata.org/pandas-docs/version/0.21/generated/pandas.DataFrame.html) object, which is the main object we will be interacting with in pandas. It represents a table of data.\n",
"The other file formats all start with `pd.read_{format}`. Note that we can provide the URL to the dataset, rather than download it beforehand.\n",
"object, which is the main object we will be interacting with in pandas. It\n",
"represents a table of data. The other file formats all start with\n",
"`pd.read_{format}`. Note that we can provide the URL to the dataset, rather\n",
"than download it beforehand.\n",
"\n",
"\n",
"We can write out the dataset using `dataframe.to_{format}(<filename)`:"
"We can write out the dataset using `dataframe.to_{format}(<filename)`:"
]
]
...
@@ -76,9 +77,7 @@
...
@@ -76,9 +77,7 @@
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic.to_csv('titanic_copy.csv', index=False) # we set index to False to prevent pandas from storing the row names"
"titanic.to_csv('titanic_copy.csv', index=False) # we set index to False to prevent pandas from storing the row names"
...
@@ -88,7 +87,8 @@
...
@@ -88,7 +87,8 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"If you can not connect to the internet, you can run the command below to load this locally stored titanic dataset"
"If you can not connect to the internet, you can run the command below to load\n",
"this locally stored titanic dataset"
]
]
},
},
{
{
...
@@ -105,15 +105,14 @@
...
@@ -105,15 +105,14 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"Note that the titanic dataset was also available to us as one of the standard datasets included with seaborn. We could load it from there using"
"Note that the titanic dataset was also available to us as one of the standard\n",
"datasets included with seaborn. We could load it from there using"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"sns.load_dataset('titanic')"
"sns.load_dataset('titanic')"
...
@@ -123,15 +122,15 @@
...
@@ -123,15 +122,15 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"Dataframes can also be created from other python objects, using pd.DataFrame.from_{other type}. The most useful of these is from_dict, which converts a mapping of the columns to a pandas DataFrame (i.e., table).\n"
"`Dataframes` can also be created from other python objects, using\n",
"`pd.DataFrame.from_{other type}`. The most useful of these is `from_dict`,\n",
"which converts a mapping of the columns to a pandas `DataFrame` (i.e., table)."
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"pd.DataFrame.from_dict({\n",
"pd.DataFrame.from_dict({\n",
...
@@ -147,15 +146,15 @@
...
@@ -147,15 +146,15 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"For many applications (e.g., ICA, machine learning input) you might want to extract your data as a numpy array. The underlying numpy array can be accessed using the `values` attribute"
"For many applications (e.g., ICA, machine learning input) you might want to\n",
"extract your data as a numpy array. The underlying numpy array can be accessed\n",
"using the `values` attribute"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic.values"
"titanic.values"
...
@@ -165,15 +164,15 @@
...
@@ -165,15 +164,15 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"Note that the type of the returned array is the most common type (in this case object). If you just want the numeric parts of the table you can use `select_dtype`, which selects specific columns based on their dtype:"
"Note that the type of the returned array is the most common type (in this case\n",
"object). If you just want the numeric parts of the table you can use\n",
"`select_dtypes`, which selects specific columns based on their dtype:"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic.select_dtypes(include=np.number).values"
"titanic.select_dtypes(include=np.number).values"
...
@@ -184,16 +183,14 @@
...
@@ -184,16 +183,14 @@
"metadata": {},
"metadata": {},
"source": [
"source": [
"Note that the numpy array has no information on the column names or row indices.\n",
"Note that the numpy array has no information on the column names or row indices.\n",
"\n",
"Alternatively, when you want to include the categorical variables in your later\n",
"Alternatively, when you want to include the categorical variables in your later analysis (e.g., for machine learning), you can extract dummy variables using:"
"analysis (e.g., for machine learning), you can extract dummy variables using:"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"pd.get_dummies(titanic)"
"pd.get_dummies(titanic)"
...
@@ -203,36 +200,19 @@
...
@@ -203,36 +200,19 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"## Accessing parts of the data"
"## Accessing parts of the data\n",
]
"\n",
},
"[Documentation on indexing](http://pandas.pydata.org/pandas-docs/stable/indexing.html)\n",
{
"\n",
"cell_type": "markdown",
"### Selecting columns by name\n",
"metadata": {},
"\n",
"source": [
"[Documentation on indexing](http://pandas.pydata.org/pandas-docs/stable/indexing.html)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Selecting columns by name"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Single columns can be selected using the normal python indexing:"
"Single columns can be selected using the normal python indexing:"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic['embark_town']"
"titanic['embark_town']"
...
@@ -242,15 +222,14 @@
...
@@ -242,15 +222,14 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"If the column names are simple strings (not required) we can also access it directly as an attribute"
"If the column names are simple strings (not required) we can also access it\n",
"directly as an attribute"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic.embark_town"
"titanic.embark_town"
...
@@ -260,17 +239,17 @@
...
@@ -260,17 +239,17 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"Note that this returns a pandas [Series](https://pandas.pydata.org/pandas-docs/version/0.23.4/generated/pandas.Series.html) rather than a DataFrame object. A Series is simply a 1-dimensional array representing a single column.\n",
"Multiple columns can be returned by providing a list of columns names. This will return a DataFrame:"
"rather than a `DataFrame` object. A `Series` is simply a 1-dimensional array\n",
"representing a single column. Multiple columns can be returned by providing a\n",
"list of columns names. This will return a `DataFrame`:"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic[['class', 'alive']]"
"titanic[['class', 'alive']]"
...
@@ -280,15 +259,15 @@
...
@@ -280,15 +259,15 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"Note that you have to provide a list here (square brackets). If you provide a tuple (round brackets) pandas will think you are trying to access a single column that has that tuple as a name:"
"Note that you have to provide a list here (square brackets). If you provide a\n",
"tuple (round brackets) pandas will think you are trying to access a single\n",
"column that has that tuple as a name:"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic[('class', 'alive')]"
"titanic[('class', 'alive')]"
...
@@ -298,29 +277,21 @@
...
@@ -298,29 +277,21 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"In this case there is no column called ('class', 'alive') leading to an error. Later on we will see some uses to having columns named like this."
"In this case there is no column called `('class', 'alive')` leading to an\n",
]
"error. Later on we will see some uses to having columns named like this.\n",
},
"\n",
{
"### Indexing rows by name or integer\n",
"cell_type": "markdown",
"\n",
"metadata": {},
"Individual rows can be accessed based on their name (i.e., the index) or integer\n",
"source": [
"(i.e., which row it is in). In our current table this will give the same\n",
"### Indexing rows by name or integer"
"results. To ensure that these are different, let's sort our titanic dataset\n",
]
"based on the passenger fare:"
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Individual rows can be accessed based on their name (i.e., the index) or integer (i.e., which row it is in). In our current table this will give the same results. To ensure that these are different, let's sort our titanic dataset based on the passenger fare:"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic_sorted = titanic.sort_values('fare')\n",
"titanic_sorted = titanic.sort_values('fare')\n",
...
@@ -331,17 +302,16 @@
...
@@ -331,17 +302,16 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"Note that the re-sorting did not change the values in the index (i.e., left-most column).\n",
"Note that the re-sorting did not change the values in the index (i.e., left-most\n",
"column).\n",
"\n",
"\n",
"We can select the first row of this newly sorted table using iloc"
"We can select the first row of this newly sorted table using `iloc`"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic_sorted.iloc[0]"
"titanic_sorted.iloc[0]"
...
@@ -357,9 +327,7 @@
...
@@ -357,9 +327,7 @@
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic_sorted.loc[0]"
"titanic_sorted.loc[0]"
...
@@ -369,15 +337,14 @@
...
@@ -369,15 +337,14 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"Note that this gives the same passenger as the first row of the initial table before sorting"
"Note that this gives the same passenger as the first row of the initial table\n",
"before sorting"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic.iloc[0]"
"titanic.iloc[0]"
...
@@ -387,15 +354,14 @@
...
@@ -387,15 +354,14 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"Another common way to access the first or last N rows of a table is using the head/tail methods"
"Another common way to access the first or last N rows of a table is using the\n",
"head/tail methods"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic_sorted.head(3)"
"titanic_sorted.head(3)"
...
@@ -404,9 +370,7 @@
...
@@ -404,9 +370,7 @@
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic_sorted.tail(3)"
"titanic_sorted.tail(3)"
...
@@ -416,15 +380,14 @@
...
@@ -416,15 +380,14 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"Note that nearly all methods in pandas return a new Dataframe, which means that we can easily call another method on them"
"Note that nearly all methods in pandas return a new `Dataframe`, which means\n",
"that we can easily call another method on them"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic_sorted.tail(10).head(5) # select the first 5 of the last 10 passengers in the database"
"titanic_sorted.tail(10).head(5) # select the first 5 of the last 10 passengers in the database"
...
@@ -433,9 +396,7 @@
...
@@ -433,9 +396,7 @@
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic_sorted.iloc[-10:-5] # alternative way to get the same passengers"
"titanic_sorted.iloc[-10:-5] # alternative way to get the same passengers"
...
@@ -445,15 +406,15 @@
...
@@ -445,15 +406,15 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"Exercise: use sorting and tail/head or indexing to find the 10 youngest passengers on the titanic. Try to do this on a single line by chaining calls to the titanic dataframe object"
"**Exercise**: use sorting and tail/head or indexing to find the 10 youngest\n",
"passengers on the titanic. Try to do this on a single line by chaining calls\n",
"to the titanic `DataFrame` object"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic.sort_values..."
"titanic.sort_values..."
...
@@ -463,22 +424,15 @@
...
@@ -463,22 +424,15 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"### Indexing rows by value"
"### Indexing rows by value\n",
]
"\n",
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"One final way to select specific columns is by their value"
"One final way to select specific columns is by their value"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic[titanic.sex == 'female'] # selects all females"
"titanic[titanic.sex == 'female'] # selects all females"
...
@@ -487,9 +441,7 @@
...
@@ -487,9 +441,7 @@
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"# select all passengers older than 60 who departed from Southampton\n",
"# select all passengers older than 60 who departed from Southampton\n",
...
@@ -500,17 +452,20 @@
...
@@ -500,17 +452,20 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"Note that this required typing \"titanic\" quite often. A quicker way to get the same result is using the `query` method, which is described in detail [here](http://pandas.pydata.org/pandas-docs/stable/indexing.html#the-query-method) (note that using the `query` method is also faster and uses a lot less memory).\n",
"Note that this required typing `titanic` quite often. A quicker way to get the\n",
"same result is using the `query` method, which is described in detail\n",
"Particularly useful when selecting data like this is the `isna` method which finds all missing data"
"Particularly useful when selecting data like this is the `isna` method which\n",
"finds all missing data"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic[~titanic.age.isna()] # select first few passengers whose age is not N/A"
"titanic[~titanic.age.isna()] # select first few passengers whose age is not N/A"
...
@@ -544,9 +498,7 @@
...
@@ -544,9 +498,7 @@
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic.dropna() # drops all passengers that have some datapoint missing"
"titanic.dropna() # drops all passengers that have some datapoint missing"
...
@@ -555,9 +507,7 @@
...
@@ -555,9 +507,7 @@
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic.dropna(subset=['age', 'fare']) # Only drop passengers with missing ages or fares"
"titanic.dropna(subset=['age', 'fare']) # Only drop passengers with missing ages or fares"
...
@@ -567,15 +517,15 @@
...
@@ -567,15 +517,15 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"Exercise: use sorting, indexing by value, dropna and tail/head or indexing to find the 10 oldest female passengers on the titanic. Try to do this on a single line by chaining calls to the titanic dataframe object"
"**Exercise**: use sorting, indexing by value, `dropna` and `tail`/`head` or\n",
"indexing to find the 10 oldest female passengers on the titanic. Try to do\n",
"this on a single line by chaining calls to the titanic `DataFrame` object"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic..."
"titanic..."
...
@@ -585,24 +535,16 @@
...
@@ -585,24 +535,16 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"## Plotting the data"
"## Plotting the data\n",
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Before we start analyzing the data, let's play around with visualizing it. \n",
"\n",
"\n",
"Before we start analyzing the data, let's play around with visualizing it.\n",
"Pandas does have some basic built-in plotting options:"
"Pandas does have some basic built-in plotting options:"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic.fare.hist(bins=20, log=True)"
"titanic.fare.hist(bins=20, log=True)"
...
@@ -611,9 +553,7 @@
...
@@ -611,9 +553,7 @@
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic.age.plot()"
"titanic.age.plot()"
...
@@ -623,15 +563,14 @@
...
@@ -623,15 +563,14 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"Individual columns are essentially 1D arrays, so we can use them as such in matplotlib"
"Individual columns are essentially 1D arrays, so we can use them as such in\n",
"`matplotlib`"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"plt.scatter(titanic.age, titanic.fare)"
"plt.scatter(titanic.age, titanic.fare)"
...
@@ -641,17 +580,21 @@
...
@@ -641,17 +580,21 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"However, for most purposes much nicer plots can be obtained using [Seaborn](https://seaborn.pydata.org). Seaborn has support to produce plots showing the [univariate](https://seaborn.pydata.org/tutorial/distributions.html#plotting-univariate-distributions) or [bivariate](https://seaborn.pydata.org/tutorial/distributions.html#plotting-bivariate-distributions) distribution of data in a single or a grid of plots.\n",
"However, for most purposes much nicer plots can be obtained using\n",
"\n",
"[Seaborn](https://seaborn.pydata.org). Seaborn has support to produce plots\n",
"Most of the seaborn plotting functions expect to get a pandas dataframe (although they will work with Numpy arrays as well). So we can plot age vs. fare like:"
"distribution of data in a single or a grid of plots. Most of the seaborn\n",
"plotting functions expect to get a pandas `DataFrame` (although they will work\n",
"with Numpy arrays as well). So we can plot age vs. fare like:"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"sns.jointplot('age', 'fare', data=titanic)"
"sns.jointplot('age', 'fare', data=titanic)"
...
@@ -661,15 +604,15 @@
...
@@ -661,15 +604,15 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"Exercise: check the documentation from `sns.jointplot` (hover the mouse over the text \"jointplot\" and press shift-tab) to find out how to turn the scatter plot into a density (kde) map"
"**Exercise**: check the documentation from `sns.jointplot` (hover the mouse\n",
"over the text `jointplot` and press shift-tab) to find out how to turn the\n",
"scatter plot into a density (kde) map"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"sns.jointplot('age', 'fare', data=titanic, ...)"
"sns.jointplot('age', 'fare', data=titanic, ...)"
...
@@ -679,15 +622,14 @@
...
@@ -679,15 +622,14 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"Here is just a brief example of how we can use multiple columns to illustrate the data in more detail"
"Here is just a brief example of how we can use multiple columns to illustrate\n",
"Exercise: Split the plot above into two rows with the first row including the passengers who survived and the second row those who did not (you might have to check the documentation again by using shift-tab while overing the mouse over `relplot`) "
"**Exercise**: Split the plot above into two rows with the first row including\n",
"the passengers who survived and the second row those who did not (you might\n",
"have to check the documentation again by using shift-tab while overing the\n",
"One of the nice thing of Seaborn is how easy it is to update how these plots look. You can read more about that [here](https://seaborn.pydata.org/tutorial/aesthetics.html). For example, to increase the font size to get a plot more approriate for a talk, you can use:"
"One of the nice thing of Seaborn is how easy it is to update how these plots\n",
"look. You can read more about that\n",
"[here](https://seaborn.pydata.org/tutorial/aesthetics.html). For example, to\n",
"increase the font size to get a plot more approriate for a talk, you can use:"
"There are a large number of built-in methods to summarize the observations in\n",
{
"a Pandas `DataFrame`. Most of these will return a `Series` with the columns\n",
"cell_type": "markdown",
"names as index:"
"metadata": {},
"source": [
"There are a large number of built-in methods to summarize the observations in a Pandas dataframe. Most of these will return a Series with the columns names as index:"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic.mean()"
"titanic.mean()"
...
@@ -761,9 +700,7 @@
...
@@ -761,9 +700,7 @@
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic.quantile(0.75)"
"titanic.quantile(0.75)"
...
@@ -773,15 +710,14 @@
...
@@ -773,15 +710,14 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"One very useful one is `describe`, which gives an overview of many common summary measures"
"One very useful one is `describe`, which gives an overview of many common\n",
"summary measures"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"titanic.describe()"
"titanic.describe()"
...
@@ -793,21 +729,20 @@
...
@@ -793,21 +729,20 @@
"source": [
"source": [
"Note that non-numeric columns are ignored when summarizing data in this way.\n",
"Note that non-numeric columns are ignored when summarizing data in this way.\n",
"\n",
"\n",
"We can also define our own functions to apply to the columns (in this case we have to explicitly set the data types)."
"We can also define our own functions to apply to the columns (in this case we\n",
"have to explicitly set the data types)."
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"def mad(series):\n",
"def mad(series):\n",
" \"\"\"\n",
" \"\"\"\n",
" Computes the median absolute deviatation (MAD)\n",
" Computes the median absolute deviatation (MAD)\n",
"\n",
"\n",
" This is a outlier-resistant measure of the standard deviation\n",
" This is a outlier-resistant measure of the standard deviation\n",
" \"\"\"\n",
" \"\"\"\n",
" no_nan = series.dropna()\n",
" no_nan = series.dropna()\n",
...
@@ -820,15 +755,14 @@
...
@@ -820,15 +755,14 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"We can also provide multiple functions to the `apply` method (note that functions can be provided as strings)"
"We can also provide multiple functions to the `apply` method (note that\n",
"[here](http://pandas.pydata.org/pandas-docs/stable/groupby.html) for a more\n",
"One of the more powerful features of is `groupby`, which splits the dataset on a categorical variable. The book contains a clear tutorial on that feature [here](https://jakevdp.github.io/PythonDataScienceHandbook/03.08-aggregation-and-grouping.html). You can check the pandas documentation [here](http://pandas.pydata.org/pandas-docs/stable/groupby.html) for a more formal introduction. One simple use is just to put it into a loop"
"formal introduction. One simple use is just to put it into a loop"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"for cls, part_table in titanic.groupby('class'):\n",
"for cls, part_table in titanic.groupby('class'):\n",
...
@@ -864,7 +796,9 @@
...
@@ -864,7 +796,9 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"However, it is more often combined with one of the aggregation functions discussed above as illustrated in this figure from the [Python data science handbook](https://jakevdp.github.io/PythonDataScienceHandbook/06.00-figure-code.html#Split-Apply-Combine)\n",
"However, it is more often combined with one of the aggregation functions\n",
"discussed above as illustrated in this figure from the [Python data science\n",
"Note that both the index (on the left) and the column names (on the top) now have multiple levels. Such a multi-level index is referred to as `MultiIndex`. This does complicate selecting specific columns/rows. You can read more of using `MultiIndex` [here](http://pandas.pydata.org/pandas-docs/stable/advanced.html).\n",
"Note that both the index (on the left) and the column names (on the top) now\n",
"\n",
"have multiple levels. Such a multi-level index is referred to as `MultiIndex`.\n",
"The short version is that columns can be selected using direct indexing (as discussed above)"
"This does complicate selecting specific columns/rows. You can read more of using\n",
"However, this single-column table is difficult to read. The reason for this is that the indexing is multi-leveled (called `MultiIndex` in pandas), while there is only a single column. We would like to move one of the levels in the index to the columns. This can be done using `stack`/`unstack`:\n",
"However, this single-column table is difficult to read. The reason for this is\n",
"that the indexing is multi-leveled (called `MultiIndex` in pandas), while there\n",
"is only a single column. We would like to move one of the levels in the index to\n",
"the columns. This can be done using `stack`/`unstack`:\n",
"\n",
"- `unstack`: Moves one levels in the index to the columns\n",
"- `unstack`: Moves one levels in the index to the columns\n",
"- `stack`: Moves one of levels in the columns to the index"
"- `stack`: Moves one of levels in the columns to the index"
"The former table, where the different groups are defined in different rows, is often referred to as long-form. After unstacking the table is often referred to as wide-form as the different group (sex in this case) is now represented as different columns. In pandas some operations are easier on long-form tables (e.g., `groupby`) while others require wide_form tables (e.g., making scatter plots of two variables). You can go back and forth using `unstack` or `stack` as illustrated above, but as this is a crucial part of pandas there are many alternatives, such as `pivot_table`, `melt`, and `wide_to_long`, which we will discuss below.\n",
"The former table, where the different groups are defined in different rows, is\n",
"often referred to as long-form. After unstacking the table is often referred to\n",
"as wide-form as the different group (sex in this case) is now represented as\n",
"different columns. In pandas some operations are easier on long-form tables\n",
"(e.g., `groupby`) while others require wide_form tables (e.g., making scatter\n",
"plots of two variables). You can go back and forth using `unstack` or `stack` as\n",
"illustrated above, but as this is a crucial part of pandas there are many\n",
"alternatives, such as `pivot_table`, `melt`, and `wide_to_long`, which we will\n",
"Note that there are also many ways to produce prettier tables in pandas (e.g., color all the negative values). This is documented [here](http://pandas.pydata.org/pandas-docs/stable/style.html)."
"Note that there are also many ways to produce prettier tables in pandas (e.g.,\n",
]
"color all the negative values). This is documented\n",
" aggfunc={'survived': 'count', 'fare': np.mean}) # compute number of survivors and mean fare\n"
" aggfunc={'survived': 'count', 'fare': np.mean}) # compute number of survivors and mean fare\n"
]
]
},
},
...
@@ -1188,15 +1098,16 @@
...
@@ -1188,15 +1098,16 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"The opposite of `pivot_table` is `melt`. This can be used to change a wide-form table into a long-form table. This is not particularly useful on the titanic dataset, so let's create a new table where this might be useful. Let's say we have a dataset listing the FA and MD values in various WM tracts:"
"The opposite of `pivot_table` is `melt`. This can be used to change a wide-form\n",
"table into a long-form table. This is not particularly useful on the titanic\n",
"dataset, so let's create a new table where this might be useful. Let's say we\n",
"have a dataset listing the FA and MD values in various WM tracts:"
"This wide-form table (i.e., all the information is in different columns) makes it hard to select just all the FA values or only the values associated with the SLF. For this it would be easier to lismt all the values in a single column. Most of the tools discussed above (e.g., `group_by` or `seaborn` plotting) work better with long-form data, which we can obtain from `melt`: "
"This wide-form table (i.e., all the information is in different columns) makes\n",
"it hard to select just all the FA values or only the values associated with the\n",
"SLF. For this it would be easier to list all the values in a single column.\n",
"Most of the tools discussed above (e.g., `group_by` or `seaborn` plotting) work\n",
"better with long-form data, which we can obtain from `melt`:"
"We can see that `melt` took all the columns (we could also have specified a specific sub-set) and returned each measurement as a seperate row. We probably want to seperate the measurement column into the measurement type (FA or MD) and the tract name. Many string manipulation function are available in the `DataFrame` object under `DataFrame.str` ([tutorial](http://pandas.pydata.org/pandas-docs/stable/text.html))"
"We can see that `melt` took all the columns (we could also have specified a\n",
"specific sub-set) and returned each measurement as a seperate row. We probably\n",
"want to seperate the measurement column into the measurement type (FA or MD) and\n",
"the tract name. Many string manipulation function are available in the\n",
"df_long['variable'] = df_long.measurement.str.slice(0, 2) # first two letters correspond to FA or MD\n",
"df_long['variable'] = df_long.measurement.str.slice(0, 2) # first two letters correspond to FA or MD\n",
...
@@ -1250,17 +1166,16 @@
...
@@ -1250,17 +1166,16 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"Finally we probably do want the FA and MD variables as different columns.\n",
"Finally we probably do want the FA and MD variables as different columns.\n",
"\n",
"\n",
"*Exercise*: Use `pivot_table` or `stack`/`unstack` to create a column for MD and FA."
"**Exercise**: Use `pivot_table` or `stack`/`unstack` to create a column for MD\n",
"and FA."
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"df_unstacked = df_long."
"df_unstacked = df_long."
...
@@ -1270,15 +1185,14 @@
...
@@ -1270,15 +1185,14 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"We can now use the tools discussed above to visualize the table (`seaborn`) or to group the table based on tract (`groupby` or `pivot_table`)."
"We can now use the tools discussed above to visualize the table (`seaborn`) or\n",
"to group the table based on tract (`groupby` or `pivot_table`)."
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"# feel free to analyze this random data in more detail"
"# feel free to analyze this random data in more detail"
...
@@ -1288,15 +1202,16 @@
...
@@ -1288,15 +1202,16 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"In general pandas is better at handling long-form than wide-form data, although for better visualization of the data an intermediate format is often best. One exception is calculating a covariance (`DataFrame.cov`) or correlation (`DataFrame.corr`) matrices which computes the correlation between each column:"
"In general pandas is better at handling long-form than wide-form data, although\n",
"for better visualization of the data an intermediate format is often best. One\n",
"exception is calculating a covariance (`DataFrame.cov`) or correlation\n",
"(`DataFrame.corr`) matrices which computes the correlation between each column:"
"Linear fitting between the different columns is available through the\n",
{
"[`statsmodels`](https://www.statsmodels.org/stable/index.html) library. A nice\n",
"cell_type": "markdown",
"way to play around with a wide variety of possible models is to use R-style\n",
"metadata": {},
"functions. The usage of the functions in `statsmodels` is described\n",
"source": [
"[here](https://www.statsmodels.org/dev/example_formulas.html). You can find a\n",
"Linear fitting between the different columns is available through the [statsmodels](https://www.statsmodels.org/stable/index.html) library. A nice way to play around with a wide variety of possible models is to use R-style functions. The usage of the functions in stastmodels is described [here](https://www.statsmodels.org/dev/example_formulas.html). You can find a more detailed description of the R-style functions [here](https://patsy.readthedocs.io/en/latest/formulas.html#the-formula-language). \n",
"more detailed description of the R-style functions\n",
"In short these functions describe the linear model as a string. For example, \"y ~ x + a + x * a\" fits the variable `y` as a function of `x`, `a`, and the interaction between `x` and `a`. The intercept is included by default (you can add \"+ 0\" to remove it)."
"In short these functions describe the linear model as a string. For example,\n",
"`\"y ~ x + a + x * a\"` fits the variable `y` as a function of `x`, `a`, and the\n",
"interaction between `x` and `a`. The intercept is included by default (you can\n",
"add `\"+ 0\"` to remove it)."
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"result = smf.logit('survived ~ age + sex + age * sex', data=titanic).fit()\n",
"result = smf.logit('survived ~ age + sex + age * sex', data=titanic).fit()\n",
...
@@ -1334,17 +1252,18 @@
...
@@ -1334,17 +1252,18 @@
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
"source": [
"source": [
"Note that statsmodels understands categorical variables and automatically replaces them with dummy variables.\n",
"Note that `statsmodels` understands categorical variables and automatically\n",
"replaces them with dummy variables.\n",
"\n",
"\n",
"Above we used logistic regression, which is appropriate for the binary survival rate. A wide variety of linear models are available. Let's try a GLM, but assume that the fare is drawn from a Gamma distribution:"
"Above we used logistic regression, which is appropriate for the binary\n",
"survival rate. A wide variety of linear models are available. Let's try a GLM,\n",
"but assume that the fare is drawn from a Gamma distribution:"
]
]
},
},
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"age_dmean = titanic.age - titanic.age.mean()\n",
"age_dmean = titanic.age - titanic.age.mean()\n",
...
@@ -1359,66 +1278,32 @@
...
@@ -1359,66 +1278,32 @@
"Cherbourg passengers clearly paid a lot more...\n",
"Cherbourg passengers clearly paid a lot more...\n",
"\n",
"\n",
"\n",
"\n",
"Note that we did not actually add the age_dmean to the dataframe. Statsmodels (or more precisely the underlying [patsy](https://patsy.readthedocs.io/en/latest/) library) automatically extracted this from our environment. This can lead to confusing behaviour..."
"Note that we did not actually add the `age_dmean` to the\n",
]
"`DataFrame`. `statsmodels` (or more precisely the underlying\n",
"extracted this from our environment. This can lead to confusing behaviour...\n",
"cell_type": "markdown",
"\n",
"metadata": {},
"# More reading\n",
"source": [
"\n",
"# More reading"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Other useful features\n",
"Other useful features\n",
"- [Concatenating](https://jakevdp.github.io/PythonDataScienceHandbook/03.06-concat-and-append.html) and [merging](https://jakevdp.github.io/PythonDataScienceHandbook/03.07-merge-and-join.html) of tables\n",
"- [Rolling Window functions](http://pandas.pydata.org/pandas-docs/stable/computation.html#window-functions) for after you have meaningfully sorted your data\n",
-[Python Data Science Handbook](https://jakevdp.github.io/PythonDataScienceHandbook/)<sup>1</sup> by Jake van der Plas
-[Python Data Science Handbook](https://jakevdp.github.io/PythonDataScienceHandbook/)<sup>1</sup> by
Jake van der Plas
<sup>1</sup> This tutorial borrows heavily from the pandas documentation and the Python Data Science Handbook
<sup>1</sup> This tutorial borrows heavily from the pandas documentation and
the Python Data Science Handbook
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
%pylab inline
%pylab inline
import pandas as pd # pd is the usual abbreviation for pandas
import pandas as pd # pd is the usual abbreviation for pandas
import matplotlib.pyplot as plt # matplotlib for plotting
import seaborn as sns # seaborn is the main plotting library for Pandas
import seaborn as sns # seaborn is the main plotting library for Pandas
import statsmodels.api as sm # statsmodels fits linear models to pandas data
import statsmodels.api as sm # statsmodels fits linear models to pandas data
import statsmodels.formula.api as smf
import statsmodels.formula.api as smf
from IPython.display import Image
from IPython.display import Image
sns.set() # use the prettier seaborn plotting settings rather than the default matplotlib one
sns.set() # use the prettier seaborn plotting settings rather than the default matplotlib one
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
## Loading in data
> We will mostly be using `seaborn` instead of `matplotlib` for
> visualisation. But `seaborn` is actually an extension to `matplotlib`, so we
> are still using the latter under the hood.
%% Cell type:markdown id: tags:
## Loading in data
Pandas supports a wide range of I/O tools to load from text files, binary files, and SQL databases. You can find a table with all formats [here](http://pandas.pydata.org/pandas-docs/stable/io.html).
Pandas supports a wide range of I/O tools to load from text files, binary files,
and SQL databases. You can find a table with all formats
This loads the data into a [DataFrame](https://pandas.pydata.org/pandas-docs/version/0.21/generated/pandas.DataFrame.html) object, which is the main object we will be interacting with in pandas. It represents a table of data.
The other file formats all start with `pd.read_{format}`. Note that we can provide the URL to the dataset, rather than download it beforehand.
object, which is the main object we will be interacting with in pandas. It
represents a table of data. The other file formats all start with
`pd.read_{format}`. Note that we can provide the URL to the dataset, rather
than download it beforehand.
We can write out the dataset using `dataframe.to_{format}(<filename)`:
We can write out the dataset using `dataframe.to_{format}(<filename)`:
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic.to_csv('titanic_copy.csv', index=False) # we set index to False to prevent pandas from storing the row names
titanic.to_csv('titanic_copy.csv', index=False) # we set index to False to prevent pandas from storing the row names
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
If you can not connect to the internet, you can run the command below to load this locally stored titanic dataset
If you can not connect to the internet, you can run the command below to load
this locally stored titanic dataset
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic = pd.read_csv('09_pandas/titanic.csv')
titanic = pd.read_csv('09_pandas/titanic.csv')
titanic
titanic
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Note that the titanic dataset was also available to us as one of the standard datasets included with seaborn. We could load it from there using
Note that the titanic dataset was also available to us as one of the standard
datasets included with seaborn. We could load it from there using
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
sns.load_dataset('titanic')
sns.load_dataset('titanic')
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Dataframes can also be created from other python objects, using pd.DataFrame.from_{other type}. The most useful of these is from_dict, which converts a mapping of the columns to a pandas DataFrame (i.e., table).
`Dataframes` can also be created from other python objects, using
`pd.DataFrame.from_{other type}`. The most useful of these is `from_dict`,
which converts a mapping of the columns to a pandas `DataFrame` (i.e., table).
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
pd.DataFrame.from_dict({
pd.DataFrame.from_dict({
'random numbers': np.random.rand(5),
'random numbers': np.random.rand(5),
'sequence (int)': np.arange(5),
'sequence (int)': np.arange(5),
'sequence (float)': np.linspace(0, 5, 5),
'sequence (float)': np.linspace(0, 5, 5),
'letters': list('abcde'),
'letters': list('abcde'),
'constant_value': 'same_value'
'constant_value': 'same_value'
})
})
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
For many applications (e.g., ICA, machine learning input) you might want to extract your data as a numpy array. The underlying numpy array can be accessed using the `values` attribute
For many applications (e.g., ICA, machine learning input) you might want to
extract your data as a numpy array. The underlying numpy array can be accessed
using the `values` attribute
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic.values
titanic.values
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Note that the type of the returned array is the most common type (in this case object). If you just want the numeric parts of the table you can use `select_dtype`, which selects specific columns based on their dtype:
Note that the type of the returned array is the most common type (in this case
object). If you just want the numeric parts of the table you can use
`select_dtypes`, which selects specific columns based on their dtype:
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic.select_dtypes(include=np.number).values
titanic.select_dtypes(include=np.number).values
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Note that the numpy array has no information on the column names or row indices.
Note that the numpy array has no information on the column names or row indices.
Alternatively, when you want to include the categorical variables in your later
Alternatively, when you want to include the categorical variables in your later analysis (e.g., for machine learning), you can extract dummy variables using:
analysis (e.g., for machine learning), you can extract dummy variables using:
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
pd.get_dummies(titanic)
pd.get_dummies(titanic)
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
## Accessing parts of the data
## Accessing parts of the data
%% Cell type:markdown id: tags:
[Documentation on indexing](http://pandas.pydata.org/pandas-docs/stable/indexing.html)
[Documentation on indexing](http://pandas.pydata.org/pandas-docs/stable/indexing.html)
%% Cell type:markdown id: tags:
### Selecting columns by name
### Selecting columns by name
%% Cell type:markdown id: tags:
Single columns can be selected using the normal python indexing:
Single columns can be selected using the normal python indexing:
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic['embark_town']
titanic['embark_town']
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
If the column names are simple strings (not required) we can also access it directly as an attribute
If the column names are simple strings (not required) we can also access it
directly as an attribute
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic.embark_town
titanic.embark_town
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Note that this returns a pandas [Series](https://pandas.pydata.org/pandas-docs/version/0.23.4/generated/pandas.Series.html) rather than a DataFrame object. A Series is simply a 1-dimensional array representing a single column.
Multiple columns can be returned by providing a list of columns names. This will return a DataFrame:
rather than a `DataFrame` object. A `Series` is simply a 1-dimensional array
representing a single column. Multiple columns can be returned by providing a
list of columns names. This will return a `DataFrame`:
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic[['class', 'alive']]
titanic[['class', 'alive']]
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Note that you have to provide a list here (square brackets). If you provide a tuple (round brackets) pandas will think you are trying to access a single column that has that tuple as a name:
Note that you have to provide a list here (square brackets). If you provide a
tuple (round brackets) pandas will think you are trying to access a single
column that has that tuple as a name:
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic[('class', 'alive')]
titanic[('class', 'alive')]
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
In this case there is no column called ('class', 'alive') leading to an error. Later on we will see some uses to having columns named like this.
In this case there is no column called `('class', 'alive')` leading to an
error. Later on we will see some uses to having columns named like this.
%% Cell type:markdown id: tags:
### Indexing rows by name or integer
### Indexing rows by name or integer
%% Cell type:markdown id: tags:
Individual rows can be accessed based on their name (i.e., the index) or integer
(i.e., which row it is in). In our current table this will give the same
Individual rows can be accessed based on their name (i.e., the index) or integer (i.e., which row it is in). In our current table this will give the same results. To ensure that these are different, let's sort our titanic dataset based on the passenger fare:
results. To ensure that these are different, let's sort our titanic dataset
based on the passenger fare:
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic_sorted = titanic.sort_values('fare')
titanic_sorted = titanic.sort_values('fare')
titanic_sorted
titanic_sorted
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Note that the re-sorting did not change the values in the index (i.e., left-most column).
Note that the re-sorting did not change the values in the index (i.e., left-most
column).
We can select the first row of this newly sorted table using iloc
We can select the first row of this newly sorted table using `iloc`
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic_sorted.iloc[0]
titanic_sorted.iloc[0]
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
We can select the row with the index 0 using
We can select the row with the index 0 using
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic_sorted.loc[0]
titanic_sorted.loc[0]
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Note that this gives the same passenger as the first row of the initial table before sorting
Note that this gives the same passenger as the first row of the initial table
before sorting
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic.iloc[0]
titanic.iloc[0]
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Another common way to access the first or last N rows of a table is using the head/tail methods
Another common way to access the first or last N rows of a table is using the
head/tail methods
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic_sorted.head(3)
titanic_sorted.head(3)
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic_sorted.tail(3)
titanic_sorted.tail(3)
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Note that nearly all methods in pandas return a new Dataframe, which means that we can easily call another method on them
Note that nearly all methods in pandas return a new `Dataframe`, which means
that we can easily call another method on them
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic_sorted.tail(10).head(5) # select the first 5 of the last 10 passengers in the database
titanic_sorted.tail(10).head(5) # select the first 5 of the last 10 passengers in the database
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic_sorted.iloc[-10:-5] # alternative way to get the same passengers
titanic_sorted.iloc[-10:-5] # alternative way to get the same passengers
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Exercise: use sorting and tail/head or indexing to find the 10 youngest passengers on the titanic. Try to do this on a single line by chaining calls to the titanic dataframe object
**Exercise**: use sorting and tail/head or indexing to find the 10 youngest
passengers on the titanic. Try to do this on a single line by chaining calls
to the titanic `DataFrame` object
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic.sort_values...
titanic.sort_values...
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
### Indexing rows by value
### Indexing rows by value
%% Cell type:markdown id: tags:
One final way to select specific columns is by their value
One final way to select specific columns is by their value
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic[titanic.sex == 'female'] # selects all females
titanic[titanic.sex == 'female'] # selects all females
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
# select all passengers older than 60 who departed from Southampton
# select all passengers older than 60 who departed from Southampton
Note that this required typing "titanic" quite often. A quicker way to get the same result is using the `query` method, which is described in detail [here](http://pandas.pydata.org/pandas-docs/stable/indexing.html#the-query-method)(note that using the `query` method is also faster and uses a lot less memory).
Note that this required typing `titanic` quite often. A quicker way to get the
same result is using the `query` method, which is described in detail
Particularly useful when selecting data like this is the `isna` method which finds all missing data
Particularly useful when selecting data like this is the `isna` method which
finds all missing data
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic[~titanic.age.isna()] # select first few passengers whose age is not N/A
titanic[~titanic.age.isna()] # select first few passengers whose age is not N/A
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
This removing of missing numbers is so common that it has is own method
This removing of missing numbers is so common that it has is own method
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic.dropna() # drops all passengers that have some datapoint missing
titanic.dropna() # drops all passengers that have some datapoint missing
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic.dropna(subset=['age', 'fare']) # Only drop passengers with missing ages or fares
titanic.dropna(subset=['age', 'fare']) # Only drop passengers with missing ages or fares
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Exercise: use sorting, indexing by value, dropna and tail/head or indexing to find the 10 oldest female passengers on the titanic. Try to do this on a single line by chaining calls to the titanic dataframe object
**Exercise**: use sorting, indexing by value, `dropna` and `tail`/`head` or
indexing to find the 10 oldest female passengers on the titanic. Try to do
this on a single line by chaining calls to the titanic `DataFrame` object
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic...
titanic...
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
## Plotting the data
## Plotting the data
%% Cell type:markdown id: tags:
Before we start analyzing the data, let's play around with visualizing it.
Before we start analyzing the data, let's play around with visualizing it.
Pandas does have some basic built-in plotting options:
Pandas does have some basic built-in plotting options:
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic.fare.hist(bins=20, log=True)
titanic.fare.hist(bins=20, log=True)
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic.age.plot()
titanic.age.plot()
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Individual columns are essentially 1D arrays, so we can use them as such in matplotlib
Individual columns are essentially 1D arrays, so we can use them as such in
`matplotlib`
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
plt.scatter(titanic.age, titanic.fare)
plt.scatter(titanic.age, titanic.fare)
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
However, for most purposes much nicer plots can be obtained using [Seaborn](https://seaborn.pydata.org). Seaborn has support to produce plots showing the [univariate](https://seaborn.pydata.org/tutorial/distributions.html#plotting-univariate-distributions) or [bivariate](https://seaborn.pydata.org/tutorial/distributions.html#plotting-bivariate-distributions) distribution of data in a single or a grid of plots.
However, for most purposes much nicer plots can be obtained using
[Seaborn](https://seaborn.pydata.org). Seaborn has support to produce plots
Most of the seaborn plotting functions expect to get a pandas dataframe (although they will work with Numpy arrays as well). So we can plot age vs. fare like:
distribution of data in a single or a grid of plots. Most of the seaborn
plotting functions expect to get a pandas `DataFrame` (although they will work
with Numpy arrays as well). So we can plot age vs. fare like:
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
sns.jointplot('age', 'fare', data=titanic)
sns.jointplot('age', 'fare', data=titanic)
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Exercise: check the documentation from `sns.jointplot` (hover the mouse over the text "jointplot" and press shift-tab) to find out how to turn the scatter plot into a density (kde) map
**Exercise**: check the documentation from `sns.jointplot` (hover the mouse
over the text `jointplot` and press shift-tab) to find out how to turn the
scatter plot into a density (kde) map
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
sns.jointplot('age', 'fare', data=titanic, ...)
sns.jointplot('age', 'fare', data=titanic, ...)
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Here is just a brief example of how we can use multiple columns to illustrate the data in more detail
Here is just a brief example of how we can use multiple columns to illustrate
Exercise: Split the plot above into two rows with the first row including the passengers who survived and the second row those who did not (you might have to check the documentation again by using shift-tab while overing the mouse over `relplot`)
**Exercise**: Split the plot above into two rows with the first row including
the passengers who survived and the second row those who did not (you might
have to check the documentation again by using shift-tab while overing the
One of the nice thing of Seaborn is how easy it is to update how these plots look. You can read more about that [here](https://seaborn.pydata.org/tutorial/aesthetics.html). For example, to increase the font size to get a plot more approriate for a talk, you can use:
One of the nice thing of Seaborn is how easy it is to update how these plots
look. You can read more about that
[here](https://seaborn.pydata.org/tutorial/aesthetics.html). For example, to
increase the font size to get a plot more approriate for a talk, you can use:
There are a large number of built-in methods to summarize the observations in
a Pandas `DataFrame`. Most of these will return a `Series` with the columns
There are a large number of built-in methods to summarize the observations in a Pandas dataframe. Most of these will return a Series with the columns names as index:
names as index:
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic.mean()
titanic.mean()
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic.quantile(0.75)
titanic.quantile(0.75)
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
One very useful one is `describe`, which gives an overview of many common summary measures
One very useful one is `describe`, which gives an overview of many common
summary measures
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic.describe()
titanic.describe()
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Note that non-numeric columns are ignored when summarizing data in this way.
Note that non-numeric columns are ignored when summarizing data in this way.
We can also define our own functions to apply to the columns (in this case we have to explicitly set the data types).
We can also define our own functions to apply to the columns (in this case we
have to explicitly set the data types).
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
def mad(series):
def mad(series):
"""
"""
Computes the median absolute deviatation (MAD)
Computes the median absolute deviatation (MAD)
This is a outlier-resistant measure of the standard deviation
This is a outlier-resistant measure of the standard deviation
One of the more powerful features of is `groupby`, which splits the dataset on
a categorical variable. The book contains a clear tutorial on that feature
One of the more powerful features of is `groupby`, which splits the dataset on a categorical variable. The book contains a clear tutorial on that feature [here](https://jakevdp.github.io/PythonDataScienceHandbook/03.08-aggregation-and-grouping.html). You can check the pandas documentation [here](http://pandas.pydata.org/pandas-docs/stable/groupby.html) for a more formal introduction. One simple use is just to put it into a loop
[here](https://jakevdp.github.io/PythonDataScienceHandbook/03.08-aggregation-and-grouping.html). You
can check the pandas documentation
[here](http://pandas.pydata.org/pandas-docs/stable/groupby.html) for a more
formal introduction. One simple use is just to put it into a loop
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
for cls, part_table in titanic.groupby('class'):
for cls, part_table in titanic.groupby('class'):
print(f'Mean fare in {cls.lower()} class: {part_table.fare.mean()}')
print(f'Mean fare in {cls.lower()} class: {part_table.fare.mean()}')
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
However, it is more often combined with one of the aggregation functions discussed above as illustrated in this figure from the [Python data science handbook](https://jakevdp.github.io/PythonDataScienceHandbook/06.00-figure-code.html#Split-Apply-Combine)
However, it is more often combined with one of the aggregation functions
discussed above as illustrated in this figure from the [Python data science
Note that both the index (on the left) and the column names (on the top) now have multiple levels. Such a multi-level index is referred to as `MultiIndex`. This does complicate selecting specific columns/rows. You can read more of using `MultiIndex`[here](http://pandas.pydata.org/pandas-docs/stable/advanced.html).
Note that both the index (on the left) and the column names (on the top) now
have multiple levels. Such a multi-level index is referred to as `MultiIndex`.
The short version is that columns can be selected using direct indexing (as discussed above)
This does complicate selecting specific columns/rows. You can read more of using
df_full[('age', 'median')] # selects median age column; note that the round brackets are optional
df_full[('age', 'median')] # selects median age column; note that the round brackets are optional
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
df_full['age'] # selects both age columns
df_full['age'] # selects both age columns
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Remember that indexing based on the index was done through `loc`. The rest is the same as for the columns above
Remember that indexing based on the index was done through `loc`. The rest is
the same as for the columns above
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
df_full.loc[('First', 0)]
df_full.loc[('First', 0)]
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
df_full.loc['First']
df_full.loc['First']
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
More advanced use of the `MultiIndex` is possible through `xs`:
More advanced use of the `MultiIndex` is possible through `xs`:
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
df_full.xs(0, level='survived') # selects all the zero's from the survived index
df_full.xs(0, level='survived') # selects all the zero's from the survived index
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
df_full.xs('mad', axis=1, level=1) # selects mad from the second level in the columns (i.e., axis=1)
df_full.xs('mad', axis=1, level=1) # selects mad from the second level in the columns (i.e., axis=1)
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
## Reshaping tables
## Reshaping tables
%% Cell type:markdown id: tags:
If we were interested in how the survival rate depends on the class and sex of
the passengers we could simply use a groupby:
If we were interested in how the survival rate depends on the class and sex of the passengers we could simply use a groupby:
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic.groupby(['class', 'sex']).survived.mean()
titanic.groupby(['class', 'sex']).survived.mean()
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
However, this single-column table is difficult to read. The reason for this is that the indexing is multi-leveled (called `MultiIndex` in pandas), while there is only a single column. We would like to move one of the levels in the index to the columns. This can be done using `stack`/`unstack`:
However, this single-column table is difficult to read. The reason for this is
that the indexing is multi-leveled (called `MultiIndex` in pandas), while there
is only a single column. We would like to move one of the levels in the index to
the columns. This can be done using `stack`/`unstack`:
-`unstack`: Moves one levels in the index to the columns
-`unstack`: Moves one levels in the index to the columns
-`stack`: Moves one of levels in the columns to the index
-`stack`: Moves one of levels in the columns to the index
The former table, where the different groups are defined in different rows, is often referred to as long-form. After unstacking the table is often referred to as wide-form as the different group (sex in this case) is now represented as different columns. In pandas some operations are easier on long-form tables (e.g., `groupby`) while others require wide_form tables (e.g., making scatter plots of two variables). You can go back and forth using `unstack` or `stack` as illustrated above, but as this is a crucial part of pandas there are many alternatives, such as `pivot_table`, `melt`, and `wide_to_long`, which we will discuss below.
The former table, where the different groups are defined in different rows, is
often referred to as long-form. After unstacking the table is often referred to
as wide-form as the different group (sex in this case) is now represented as
different columns. In pandas some operations are easier on long-form tables
(e.g., `groupby`) while others require wide_form tables (e.g., making scatter
plots of two variables). You can go back and forth using `unstack` or `stack` as
illustrated above, but as this is a crucial part of pandas there are many
alternatives, such as `pivot_table`, `melt`, and `wide_to_long`, which we will
Note that there are also many ways to produce prettier tables in pandas (e.g., color all the negative values). This is documented [here](http://pandas.pydata.org/pandas-docs/stable/style.html).
Note that there are also many ways to produce prettier tables in pandas (e.g.,
color all the negative values). This is documented
As in `groupby` the aggregation function can be a string of a common aggregation function, or any function that should be applied.
As in `groupby` the aggregation function can be a string of a common aggregation
function, or any function that should be applied.
We can even apply different aggregate functions to different columns
We can even apply different aggregate functions to different columns
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
titanic.pivot_table(index='class', columns='sex',
titanic.pivot_table(index='class', columns='sex',
aggfunc={'survived': 'count', 'fare': np.mean}) # compute number of survivors and mean fare
aggfunc={'survived': 'count', 'fare': np.mean}) # compute number of survivors and mean fare
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
The opposite of `pivot_table` is `melt`. This can be used to change a wide-form table into a long-form table. This is not particularly useful on the titanic dataset, so let's create a new table where this might be useful. Let's say we have a dataset listing the FA and MD values in various WM tracts:
The opposite of `pivot_table` is `melt`. This can be used to change a wide-form
table into a long-form table. This is not particularly useful on the titanic
dataset, so let's create a new table where this might be useful. Let's say we
have a dataset listing the FA and MD values in various WM tracts:
f'FA({tract})': np.random.rand(10) for tract in tracts }, **{
f'FA({tract})': np.random.rand(10) for tract in tracts }, **{
f'MD({tract})': np.random.rand(10) * 1e-3 for tract in tracts
f'MD({tract})': np.random.rand(10) * 1e-3 for tract in tracts
}))
}))
df_wide
df_wide
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
This wide-form table (i.e., all the information is in different columns) makes it hard to select just all the FA values or only the values associated with the SLF. For this it would be easier to lismt all the values in a single column. Most of the tools discussed above (e.g., `group_by` or `seaborn` plotting) work better with long-form data, which we can obtain from `melt`:
This wide-form table (i.e., all the information is in different columns) makes
it hard to select just all the FA values or only the values associated with the
SLF. For this it would be easier to list all the values in a single column.
Most of the tools discussed above (e.g., `group_by` or `seaborn` plotting) work
better with long-form data, which we can obtain from `melt`:
We can see that `melt` took all the columns (we could also have specified a specific sub-set) and returned each measurement as a seperate row. We probably want to seperate the measurement column into the measurement type (FA or MD) and the tract name. Many string manipulation function are available in the `DataFrame` object under `DataFrame.str` ([tutorial](http://pandas.pydata.org/pandas-docs/stable/text.html))
We can see that `melt` took all the columns (we could also have specified a
specific sub-set) and returned each measurement as a seperate row. We probably
want to seperate the measurement column into the measurement type (FA or MD) and
the tract name. Many string manipulation function are available in the
df_long['variable'] = df_long.measurement.str.slice(0, 2) # first two letters correspond to FA or MD
df_long['variable'] = df_long.measurement.str.slice(0, 2) # first two letters correspond to FA or MD
df_long['tract'] = df_long.measurement.str.slice(3, -1) # fourth till the second-to-last letter correspond to the tract
df_long['tract'] = df_long.measurement.str.slice(3, -1) # fourth till the second-to-last letter correspond to the tract
df_long.head(12)
df_long.head(12)
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Finally we probably do want the FA and MD variables as different columns.
Finally we probably do want the FA and MD variables as different columns.
*Exercise*: Use `pivot_table` or `stack`/`unstack` to create a column for MD and FA.
**Exercise**: Use `pivot_table` or `stack`/`unstack` to create a column for MD
and FA.
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
df_unstacked = df_long.
df_unstacked = df_long.
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
We can now use the tools discussed above to visualize the table (`seaborn`) or to group the table based on tract (`groupby` or `pivot_table`).
We can now use the tools discussed above to visualize the table (`seaborn`) or
to group the table based on tract (`groupby` or `pivot_table`).
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
# feel free to analyze this random data in more detail
# feel free to analyze this random data in more detail
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
In general pandas is better at handling long-form than wide-form data, although for better visualization of the data an intermediate format is often best. One exception is calculating a covariance (`DataFrame.cov`) or correlation (`DataFrame.corr`) matrices which computes the correlation between each column:
In general pandas is better at handling long-form than wide-form data, although
for better visualization of the data an intermediate format is often best. One
exception is calculating a covariance (`DataFrame.cov`) or correlation
(`DataFrame.corr`) matrices which computes the correlation between each column:
Linear fitting between the different columns is available through the [statsmodels](https://www.statsmodels.org/stable/index.html) library. A nice way to play around with a wide variety of possible models is to use R-style functions. The usage of the functions in stastmodels is described [here](https://www.statsmodels.org/dev/example_formulas.html). You can find a more detailed description of the R-style functions [here](https://patsy.readthedocs.io/en/latest/formulas.html#the-formula-language).
Linear fitting between the different columns is available through the
[`statsmodels`](https://www.statsmodels.org/stable/index.html) library. A nice
way to play around with a wide variety of possible models is to use R-style
functions. The usage of the functions in `statsmodels` is described
[here](https://www.statsmodels.org/dev/example_formulas.html). You can find a
more detailed description of the R-style functions
In short these functions describe the linear model as a string. For example, "y ~ x + a + x * a" fits the variable `y` as a function of `x`, `a`, and the interaction between `x` and `a`. The intercept is included by default (you can add "+ 0" to remove it).
In short these functions describe the linear model as a string. For example,
`"y ~ x + a + x * a"` fits the variable `y` as a function of `x`, `a`, and the
interaction between `x` and `a`. The intercept is included by default (you can
add `"+ 0"` to remove it).
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
result = smf.logit('survived ~ age + sex + age * sex', data=titanic).fit()
result = smf.logit('survived ~ age + sex + age * sex', data=titanic).fit()
print(result.summary())
print(result.summary())
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Note that statsmodels understands categorical variables and automatically replaces them with dummy variables.
Note that `statsmodels` understands categorical variables and automatically
replaces them with dummy variables.
Above we used logistic regression, which is appropriate for the binary survival rate. A wide variety of linear models are available. Let's try a GLM, but assume that the fare is drawn from a Gamma distribution:
Above we used logistic regression, which is appropriate for the binary
survival rate. A wide variety of linear models are available. Let's try a GLM,
but assume that the fare is drawn from a Gamma distribution:
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```python
```
age_dmean = titanic.age - titanic.age.mean()
age_dmean = titanic.age - titanic.age.mean()
result = smf.glm('fare ~ age_dmean + embark_town', data=titanic).fit()
result = smf.glm('fare ~ age_dmean + embark_town', data=titanic).fit()
print(result.summary())
print(result.summary())
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Cherbourg passengers clearly paid a lot more...
Cherbourg passengers clearly paid a lot more...
Note that we did not actually add the age_dmean to the dataframe. Statsmodels (or more precisely the underlying [patsy](https://patsy.readthedocs.io/en/latest/) library) automatically extracted this from our environment. This can lead to confusing behaviour...
Note that we did not actually add the `age_dmean` to the
`DataFrame`. `statsmodels` (or more precisely the underlying
extracted this from our environment. This can lead to confusing behaviour...
# More reading
# More reading
%% Cell type:markdown id: tags:
Other useful features
Other useful features
-[Concatenating](https://jakevdp.github.io/PythonDataScienceHandbook/03.06-concat-and-append.html) and [merging](https://jakevdp.github.io/PythonDataScienceHandbook/03.07-merge-and-join.html) of tables
-[Lots of](http://pandas.pydata.org/pandas-docs/stable/basics.html#dt-accessor)[time](http://pandas.pydata.org/pandas-docs/stable/timeseries.html) [series](http://pandas.pydata.org/pandas-docs/stable/timedeltas.html) support
-[Rolling Window functions](http://pandas.pydata.org/pandas-docs/stable/computation.html#window-functions) for after you have meaningfully sorted your data