Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

convert birth date to age pandas

(pd.to_datetime('today').year-pd.to_datetime('1956-07-01').year)

Out[83]: 61
Comment

convert birth date column to age pandas

import datetime as DT
import io
import numpy as np
import pandas as pd

pd.options.mode.chained_assignment = 'warn'

content = '''     ssno        lname         fname    pos_title             ser  gender  dob 
0    23456789    PLILEY     JODY        BUDG ANAL             0560  F      031871 
1    987654321   NOEL       HEATHER     PRTG SRVCS SPECLST    1654  F      120852
2    234567891   SONJU      LAURIE      SUPVY CONTR SPECLST   1102  F      010999
3    345678912   MANNING    CYNTHIA     SOC SCNTST            0101  F      081692
4    456789123   NAUERTZ    ELIZABETH   OFF AUTOMATION ASST   0326  F      031387'''

df = pd.read_csv(io.StringIO(content), sep='s{2,}')
df['dob'] = df['dob'].apply('{:06}'.format)

now = pd.Timestamp('now')
df['dob'] = pd.to_datetime(df['dob'], format='%m%d%y')    # 1
df['dob'] = df['dob'].where(df['dob'] < now, df['dob'] -  np.timedelta64(100, 'Y'))   # 2
df['age'] = (now - df['dob']).astype('<m8[Y]')    # 3
print(df)
Comment

PREVIOUS NEXT
Code Example
Python :: pycharm remove not in use imports 
Python :: b1-motion tkinter 
Python :: how to parse dicts in reqparse in flask 
Python :: python create folder if not exists 
Python :: get local python api image url 
Python :: python enum declare 
Python :: series to dataframe with column names 
Python :: how to add 2 dates in python 
Python :: pyautogui pause in python 
Python :: show a image in python 
Python :: numpy correlation 
Python :: pandas series sort 
Python :: openpyxl get last non empty row 
Python :: print a random word from list python 
Python :: parquet pyspark 
Python :: uninstall poetry 
Python :: django queryset get all distinct 
Python :: python lowercase 
Python :: get request header flask 
Python :: jupyter notebook set default directory 
Python :: creata daframe python 
Python :: how to play mp3 audio in python 
Python :: cprofile implementation 
Python :: python find word in list 
Python :: pipenv 
Python :: read xls file in python 
Python :: what is wsgi in python 
Python :: how to make a window in tkinter 
Python :: mongodb group by having 
Python :: round python 
ADD CONTENT
Topic
Content
Source link
Name
4+5 =