Git Product home page Git Product logo

dsc-1-03-10-statistical-methods-in-pandas's Introduction

Statistical Methods in Pandas

Introduction

In this lesson you'll learn how to use some of the key summary statistics methods in Pandas.

Objectives:

You will be able to:

  • Understand and use the df.describe() and df.info() summary statistics methods
  • Use built-in Pandas methods for calculating summary statistics (.mean(), .std(), .count(), .sum(), .mode(), .median(), .std(), .var() and .quantile())
  • Apply a function to every element in a Series or DataFrame using s.apply() and df.applymap()

Getting DataFrame-Level Summary Statistics

When working with a new dataset, the first step is always to begin to understand what makes up that dataset. The pandas DataFrame class contains two built-in methods that make this very easy for us.

Using df.info()

The df.info() method provides us with summary metadata about our DataFrame--that is, it gives us data about our dataset, such as how many rows and columns it contains, and what data types they are stored as. Let's demonstrate this by reading in the titanic dataset and calling the info() function on the DataFrame we store the dataset in.

import pandas as pd
df  = pd.read_csv('titanic.csv')
df.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 891 entries, 0 to 890
Data columns (total 13 columns):
Unnamed: 0     891 non-null int64
PassengerId    891 non-null int64
Survived       891 non-null int64
Pclass         891 non-null object
Name           891 non-null object
Sex            891 non-null object
Age            714 non-null float64
SibSp          891 non-null int64
Parch          891 non-null int64
Ticket         891 non-null object
Fare           891 non-null float64
Cabin          204 non-null object
Embarked       889 non-null object
dtypes: float64(2), int64(5), object(6)
memory usage: 90.6+ KB

As we can see from the output above, the .info() method provides us with great information about the characteristics of the DataFrame, without telling us anything about the data it actually contains.

Examine the output above, and take note of the important things it tells us about the DataFrame, such as:

  • The number of columns and rows in the DataFrame
  • The data type of the data each column contains
  • How many values each column contains (NaNs are not counted)
  • The memory footprint of the DataFrame

This sort of information about a dataset is called metadata, since it's data about our data.

Using .describe()

The next step in Exploratory Data Analysis (EDA) is usually to dig into the summary statistics of the dataset, and get a feel for the data each column contains. Rather than force us to deal with the tedium of doing this individually for every column, pandas DataFrames provide the handy df.describe() method which calculates the basic summary statistics for each column for us automatically.

See the example in the cell below.

df.describe()
<style scoped> .dataframe tbody tr th:only-of-type { vertical-align: middle; }
.dataframe tbody tr th {
    vertical-align: top;
}

.dataframe thead th {
    text-align: right;
}
</style>
Unnamed: 0 PassengerId Survived Age SibSp Parch Fare
count 891.000000 891.000000 891.000000 714.000000 891.000000 891.000000 891.000000
mean 445.000000 446.000000 0.383838 29.699118 0.523008 0.381594 32.204208
std 257.353842 257.353842 0.486592 14.526497 1.102743 0.806057 49.693429
min 0.000000 1.000000 0.000000 0.420000 0.000000 0.000000 0.000000
25% 222.500000 223.500000 0.000000 20.125000 0.000000 0.000000 7.910400
50% 445.000000 446.000000 0.000000 28.000000 0.000000 0.000000 14.454200
75% 667.500000 668.500000 1.000000 38.000000 1.000000 0.000000 31.000000
max 890.000000 891.000000 1.000000 80.000000 8.000000 6.000000 512.329200

As we can see, the output of the .describe() method is very handy, and gives us relevant information such as:

  • a count of the number of values in each column, making it identify columns with missing values
  • The mean and standard deviation of each column
  • The minimum and maximum values found in each column
  • The median (50%) and quartile values (25% & 75%) for each column

Use the .describe() method to quickly help you get a feel for your datasets when you start the Exploratory Data Analysis process.

Calculating Individual Column Statistics

If we need to calculate individual statistics about a column, we can also do this easily. Pandas DataFrames and Series objects come with a plethora of built-in methods to instantly calculate summary statistics for us.

See the code block below for examples:

# Get the mean of every numeric column at once
df.mean()
Unnamed: 0     445.000000
PassengerId    446.000000
Survived         0.383838
Age             29.699118
SibSp            0.523008
Parch            0.381594
Fare            32.204208
dtype: float64
# Get the mean of a specific column
df['Fare'].mean()
32.2042079685746
# Get the value for 90% quantile for a specific column
df['Age'].quantile(.9)
50.0
# Get the median value for a specific column
df['Age'].median()
28.0

There are many different statistical methods built into pandas DataFrames--these are just a few! We will not list all of them, but here are some common ones you'll probably make use of early and often:

  • .count() -- the count of the total number of entries in a column
  • .std() -- the standard deviation for the column
  • .sum() -- the sum of all values in the column
  • .cumsum() -- the cumulative sum, where each cell index contains the sum of all indices lower than, and including, itself.

Summary Statistics for Categorical Columns

Obviously, we cannot calculate most summary statistics on columns that contain non-numeric data--there's no way for us to find the mean of the letters in the Embarked column, for instance. However, there are some summary statistics we can use to help us better understand our categorical columns.

See the examples in the cell below:

df['Embarked'].unique()
array(['S', 'C', 'Q', nan], dtype=object)
df['Embarked'].value_counts()
S    644
C    168
Q     77
Name: Embarked, dtype: int64

These methods are extremely useful when dealing with categorical data!

.unique() shows us all the unique values contained in the column.

.value_counts() shows us a count for how many times each unique value is present in a dataset, giving us a feel for the distribution of values in the column.

Calculating on the Fly with .apply() and .applymap()

Sometimes, we'll need to make changes to our dataset, or to compute functions on our data that aren't built in to pandas. We can do this by passing lambda values into the apply() method when working with pandas series, and the .applymap() method when working with pandas DataFrames.

Note that both of these do not mutate the original dataset--instead, they return a copy of the Series or DataFrame containing the result.

See the example in the cell below:

# Quick function to convert every value in the DataFrame to a string
string_df = df.applymap(lambda x: str(x))
string_df.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 891 entries, 0 to 890
Data columns (total 13 columns):
Unnamed: 0     891 non-null object
PassengerId    891 non-null object
Survived       891 non-null object
Pclass         891 non-null object
Name           891 non-null object
Sex            891 non-null object
Age            891 non-null object
SibSp          891 non-null object
Parch          891 non-null object
Ticket         891 non-null object
Fare           891 non-null object
Cabin          891 non-null object
Embarked       891 non-null object
dtypes: object(13)
memory usage: 90.6+ KB
# Let's quickly square every value in the Age column
display(df['Age'].apply(lambda x: x**2).head())

# Note that the original data in the age column has not changed
df['Age'].head()
0     484.0
1    1444.0
2     676.0
3    1225.0
4    1225.0
Name: Age, dtype: float64





0    22.0
1    38.0
2    26.0
3    35.0
4    35.0
Name: Age, dtype: float64

Conclusion

In this lesson, you learned how to:

  • Understand and use the df.describe() and df.info() summary statistics methods
  • Use built-in Pandas methods for calculating summary statistics (.mean(), .std(), .count(), .sum(), .mean(), .median(), .std(), .var() and .quantile())
  • Apply a function to every element in a Series or DataFrame using s.apply() and df.applymap()

dsc-1-03-10-statistical-methods-in-pandas's People

Contributors

mathymitchell avatar mike-kane avatar peterbell avatar tkoar avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Forkers

joelvzach

dsc-1-03-10-statistical-methods-in-pandas's Issues

typo

.mean() is listed twice at the top. might be trying to include .mode()?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.