Skip to content

Instantly share code, notes, and snippets.

@gpfreitas
Created February 7, 2019 05:10
Show Gist options
  • Save gpfreitas/206af00aeb6e353386fc12a1596037e8 to your computer and use it in GitHub Desktop.
Save gpfreitas/206af00aeb6e353386fc12a1596037e8 to your computer and use it in GitHub Desktop.

Revisions

  1. gpfreitas renamed this gist Feb 7, 2019. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. gpfreitas created this gist Feb 7, 2019.
    15 changes: 15 additions & 0 deletions notebook_startup.ipynb
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    import numpy as np
    import pandas as pd
    import itertools as it
    import matplotlib.pyplot as plt
    import logging

    log_fmt = '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
    logging.basicConfig(level=logging.INFO, format=log_fmt)
    logging.info('BEGIN')

    pd.options.display.precision = 4
    pd.options.display.width = 120
    plt.rcParams['figure.figsize'] = (14, 8)

    %matplotlib inline