Skip to content

Instantly share code, notes, and snippets.

@fclesio
Created October 29, 2019 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fclesio/eb102abfaa878f3df7c73367d0683a91 to your computer and use it in GitHub Desktop.
Save fclesio/eb102abfaa878f3df7c73367d0683a91 to your computer and use it in GitHub Desktop.
# Imports, 538 theme in the charts and load data
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
%pylab inline
plt.style.use('fivethirtyeight')
df_brasileirao = pd.read_csv('dataset-2003-2018.csv', delimiter=';')
print(f'Number of Records: {df_brasileirao.shape[0]} - Number of Columns: {df_brasileirao.shape[1]}')
# Loading Check
df_brasileirao.head(5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment