I’m trying to print first name, last name and birthday, so how i could do it?
Here’s my code:
JavaScript
x
15
15
1
import pandas as pd
2
import numpy as np
3
from datetime import datetime, date
4
5
pd.set_option('display.max_rows', None)
6
pd.set_option('display.max_columns', None)
7
pd.set_option('display.width', None)
8
pd.set_option('display.max_colwidth', -1)
9
df = pd.read_csv("legislators-current.csv")
10
df.shape
11
12
oldest = df['birthday'].min()
13
print(oldest)
14
15
Output should be like this:
last_name | first_name | birthday |
---|---|---|
Cawthorn | David | 1995-08-01 |
Advertisement
Answer
First add parse_dates
to read_csv
for datetimes:
JavaScript
1
2
1
df = pd.read_csv("legislators-current.csv", parse_dates=['birthday'])
2
Then if need filter by minimal birthday
and columns in list use DataFrame.loc
:
JavaScript
1
2
1
df.loc[df['birthday'].eq(df['birthday'].min()), ['last_name','first_name','birthday']]
2
For all columns use boolean indexing
:
JavaScript
1
2
1
df[df['birthday'].eq(df['birthday'].min())]
2