Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # import libraries
- import matplotlib.pyplot as plt
- import pandas as pd
- import seaborn as sns
- from sklearn.model_selection import train_test_split
- # Load the data
- FILE_PATH = './games.csv'
- games = pd.read_csv(FILE_PATH)
- # Print the names of the columns & shapes in games
- print(games.columns)
- print(games.shape)
Advertisement
Add Comment
Please, Sign In to add comment