February 2019
Beginner to intermediate
308 pages
7h 42m
English
We can use the parse_dates argument when reading the CSV file using the read_csv function in pandas.
We can filter a DataFrame like so:
df = df[(df['height'] >= 160) & (df['height'] <= 180)]
This returns a new DataFrame with range of height values between 160 and 180.
We can compartmentalize our functions using modular pieces of code. For example, in ...