Learn practical skills, build real-world projects, and advance your career
import numpy as np 
import pandas as pd 
import matplotlib.pyplot as plt

Read the file

data = pd.read_csv('../project-kobe/data.csv')
data.head()
#Classify shot_made_flag as a null value as a test set
test=data[data['shot_made_flag'].isnull()]
test.shape
test