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
Handling Duplicated and Missing Data
Handling Duplicated and Missing Data
# Setup
from datetime import datetime
import os
import numpy as np
import pandas as pd
from utils import render
users = pd.read_csv(os.path.join('data', 'users.csv'), index_col=0)
transactions = pd.read_csv(os.path.join('data', 'transactions.csv'), index_col=0)
requests = pd.read_csv(os.path.join('data', 'requests.csv'), index_col=0)
# Perform the m...