Tuesday, December 12, 2017

Pandas Kütüphanesi Ders - 2

Lesson 2



These tutorials are also available through an email course, please visit http://www.hedaro.com/pandas-tutorial to sign up today.
Create Data - We begin by creating our own data set for analysis. This prevents the end user reading this tutorial from having to download any files to replicate the results below. We will export this data set to a text file so that you can get some experience pulling data from a text file.
Get Data - We will learn how to read in the text file containing the baby names. The data consist of baby names born in the year 1880.
Prepare Data - Here we will simply take a look at the data and make sure it is clean. By clean I mean we will take a look inside the contents of the text file and look for any anomalities. These can include missing data, inconsistencies in the data, or any other data that seems out of place. If any are found we will then have to make decisions on what to do with these records.
Analyze Data - We will simply find the most popular name in a specific year.
Present Data - Through tabular data and a graph, clearly show the end user what is the most popular name in a specific year.
NOTE:
Make sure you have looked through all previous lessons as the knowledge learned in previous lessons will be needed for this exercise.
Numpy will be used to help generate the sample data set. Importing the libraries is the first step we will take in the lesson.
In [1]:
# Import all libraries needed for the tutorial
import pandas as pd
from numpy import random
import matplotlib.pyplot as plt
import sys #only needed to determine Python version number
import matplotlib #only needed to determine Matplotlib version number

# Enable inline plotting
%matplotlib inline
In [2]:
print('Python version ' + sys.version)
print('Pandas version ' + pd.__version__)
print('Matplotlib version ' + matplotlib.__version__)
Python version 3.5.1 |Anaconda custom (64-bit)| (default, Feb 16 2016, 09:49:46) [MSC v.1900 64 bit (AMD64)]
Pandas version 0.20.1
Matplotlib version 1.5.1

Create Data

The data set will consist of 1,000 baby names and the number of births recorded for that year (1880). We will also add plenty of duplicates so you will see the same baby name more than once. You can think of the multiple entries per name simply being different hospitals around the country reporting the number of births per baby name. So if two hospitals reported the baby name "Bob", the data will have two values for the name Bob. We will start by creating the random set of baby names.
In [3]:
# The inital set of baby names
names = ['Bob','Jessica','Mary','John','Mel']
To make a random list of 1,000 baby names using the five above we will do the following:
  • Generate a random number between 0 and 4
To do this we will be using the functions seedrandintlenrange, and zip.
In [4]:
# This will ensure the random samples below can be reproduced. 
# This means the random samples will always be identical.

random.seed?
In [5]:
random.randint?
In [6]:
len?
In [7]:
range?
In [8]:
zip?
seed(500) - Create seed
randint(low=0,high=len(names)) - Generate a random integer between zero and the length of the list "names".
names[n] - Select the name where its index is equal to n.
for i in range(n) - Loop until i is equal to n, i.e. 1,2,3,....n.
random_names = Select a random name from the name list and do this n times.
In [9]:
random.seed(500)
random_names = [names[random.randint(low=0,high=len(names))] for i in range(1000)]

# Print first 10 records
random_names[:10]
Out[9]:
['Mary',
 'Jessica',
 'Jessica',
 'Bob',
 'Jessica',
 'Jessica',
 'Jessica',
 'Mary',
 'Mary',
 'Mary']
Generate a random numbers between 0 and 1000
In [10]:
# The number of births per name for the year 1880
births = [random.randint(low=0,high=1000) for i in range(1000)]
births[:10]
Out[10]:
[968, 155, 77, 578, 973, 124, 155, 403, 199, 191]
Merge the names and the births data set using the zip function.
In [11]:
BabyDataSet = list(zip(random_names,births))
BabyDataSet[:10]
Out[11]:
[('Mary', 968),
 ('Jessica', 155),
 ('Jessica', 77),
 ('Bob', 578),
 ('Jessica', 973),
 ('Jessica', 124),
 ('Jessica', 155),
 ('Mary', 403),
 ('Mary', 199),
 ('Mary', 191)]
We are basically done creating the data set. We now will use the pandas library to export this data set into a csv file.
df will be a DataFrame object. You can think of this object holding the contents of the BabyDataSet in a format similar to a sql table or an excel spreadsheet. Lets take a look below at the contents inside df.
In [12]:
df = pd.DataFrame(data = BabyDataSet, columns=['Names', 'Births'])
df[:10]
Out[12]:
NamesBirths
0Mary968
1Jessica155
2Jessica77
3Bob578
4Jessica973
5Jessica124
6Jessica155
7Mary403
8Mary199
9Mary191
  • Export the dataframe to a text file. We can name the file births1880.txt. The function to_csv will be used to export. The file will be saved in the same location of the notebook unless specified otherwise.
In [13]:
df.to_csv?
The only parameters we will use is index and header. Setting these parameters to False will prevent the index and header names from being exported. Change the values of these parameters to get a better understanding of their use.
In [14]:
df.to_csv('births1880.txt',index=False,header=False)

Get Data

To pull in the text file, we will use the pandas function read_csv. Let us take a look at this function and what inputs it takes.
In [15]:
pd.read_csv?
Even though this functions has many parameters, we will simply pass it the location of the text file.
Location = C:\Users\TYPE_USER_NAME.xy\startups\births1880.txt
Note: Depending on where you save your notebooks, you may need to modify the location above.
In [16]:
Location = r'C:\Users\david\notebooks\update\births1880.txt'
df = pd.read_csv(Location)
Notice the r before the string. Since the slashes are special characters, prefixing the string with a r will escape the whole string.
In [17]:
df.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 999 entries, 0 to 998
Data columns (total 2 columns):
Mary    999 non-null object
968     999 non-null int64
dtypes: int64(1), object(1)
memory usage: 15.7+ KB
Info says:
  • There are 999 records in the data set
  • There is a column named Mary with 999 values
  • There is a column named 968 with 999 values
  • Out of the two columns, one is numeric, the other is non numeric
To actually see the contents of the dataframe we can use the head() function which by default will return the first five records. You can also pass in a number n to return the top n records of the dataframe.
In [18]:
df.head()
Out[18]:
Mary968
0Jessica155
1Jessica77
2Bob578
3Jessica973
4Jessica124
This brings us to our first problem of the exercise. The read_csv function treated the first record in the text file as the header names. This is obviously not correct since the text file did not provide us with header names.
To correct this we will pass the header parameter to the read_csv function and set it to None (means null in python).
In [19]:
df = pd.read_csv(Location, header=None)
df.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 1000 entries, 0 to 999
Data columns (total 2 columns):
0    1000 non-null object
1    1000 non-null int64
dtypes: int64(1), object(1)
memory usage: 15.7+ KB
Info now says:
  • There are 1000 records in the data set
  • There is a column named 0 with 1000 values
  • There is a column named 1 with 1000 values
  • Out of the two columns, one is numeric, the other is non numeric
Now lets take a look at the last five records of the dataframe
In [20]:
df.tail()
Out[20]:
01
995John151
996Jessica511
997John756
998Jessica294
999John152
If we wanted to give the columns specific names, we would have to pass another paramter called names. We can also omit the header parameter.
In [21]:
df = pd.read_csv(Location, names=['Names','Births'])
df.head(5)
Out[21]:
NamesBirths
0Mary968
1Jessica155
2Jessica77
3Bob578
4Jessica973
You can think of the numbers [0,1,2,3,4,...] as the row numbers in an Excel file. In pandas these are part of the index of the dataframe. You can think of the index as the primary key of a sql table with the exception that an index is allowed to have duplicates.
[Names, Births] can be though of as column headers similar to the ones found in an Excel spreadsheet or sql database.
Delete the txt file now that we are done using it.
In [22]:
import os
os.remove(Location)

Prepare Data

The data we have consists of baby names and the number of births in the year 1880. We already know that we have 1,000 records and none of the records are missing (non-null values). We can verify the "Names" column still only has five unique names.
We can use the unique property of the dataframe to find all the unique records of the "Names" column.
In [23]:
# Method 1:
df['Names'].unique()
Out[23]:
array(['Mary', 'Jessica', 'Bob', 'John', 'Mel'], dtype=object)
In [24]:
# If you actually want to print the unique values:
for x in df['Names'].unique():
    print(x)
Mary
Jessica
Bob
John
Mel
In [25]:
# Method 2:
print(df['Names'].describe())
count     1000
unique       5
top        Bob
freq       206
Name: Names, dtype: object
Since we have multiple values per baby name, we need to aggregate this data so we only have a baby name appear once. This means the 1,000 rows will need to become 5. We can accomplish this by using the groupby function.
In [26]:
df.groupby?
In [27]:
# Create a groupby object
name = df.groupby('Names')

# Apply the sum function to the groupby object
df = name.sum()
df
Out[27]:
Births
Names
Bob106817
Jessica97826
John90705
Mary99438
Mel102319

Analyze Data

To find the most popular name or the baby name with the higest birth rate, we can do one of the following.
  • Sort the dataframe and select the top row
  • Use the max() attribute to find the maximum value
In [28]:
# Method 1:
Sorted = df.sort_values(['Births'], ascending=False)
Sorted.head(1)
Out[28]:
Births
Names
Bob106817
In [29]:
# Method 2:
df['Births'].max()
Out[29]:
106817

Present Data

Here we can plot the Births column and label the graph to show the end user the highest point on the graph. In conjunction with the table, the end user has a clear picture that Bob is the most popular baby name in the data set.
In [30]:
# Create graph
df['Births'].plot.bar()

print("The most popular name")
df.sort_values(by='Births', ascending=False)
The most popular name
Out[30]:
Births
Names
Bob106817
Mel102319
Mary99438
Jessica97826
John90705
This tutorial was created by HEDARO

No comments:

Post a Comment

file tree for nodejs project

 find . \( -path "*/node_modules" -o -path "*/.git" \) -prune -o -print | tree -a -I 'node_modules|.git'