Skip to content

Instantly share code, notes, and snippets.

@Napear
Last active June 19, 2021 00:13
Show Gist options
  • Save Napear/c4bf8c9687583532a8b719c2ed48a2ef to your computer and use it in GitHub Desktop.
Save Napear/c4bf8c9687583532a8b719c2ed48a2ef to your computer and use it in GitHub Desktop.
Pandas EDA setup
import pandas as pd
import seaborn as sns
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker
pd.set_option('display.max_columns', None)
pd.set_option('display.max_rows', 100)
pd.set_option('display.min_rows', 50)
pd.set_option('display.max_colwidth', None)
sns.set(rc={'figure.figsize':(11,9)})
sns.set_theme()
sns.set_palette('colorblind')
CMAP = 'viridis'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment