Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed Introduction to pandas!
You have completed Introduction to pandas!
Instruction
Exploration Methods
Exploration Methods
When you receive a CSV file from an external source, you'll want to get a feel for the data.
Let's import some data and then learn how to explore it.
# Setup
import os
import pandas as pd
# We use os.path.join because Windows uses a backslash (\) to separate directories
# while others use a forward slash (/)
users_file_name = os.path.join('data', 'users.csv')
users_...