Advertisement
AgungAlfiansyah

Untitled

Mar 31st, 2016
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.53 KB | None | 0 0
  1. import numpy as np # numerical programming library
  2. import scipy as sp # statistics functions, amongst other things
  3. import matplotlib as mpl # this actually imports matplotlib
  4. import matplotlib.cm as cm #allows us easy access to colormaps
  5. import matplotlib.pyplot as plt #sets up plotting under plt
  6. import pandas as pd #lets us handle data as dataframes
  7. #sets up pandas table display
  8. pd.set_option('display.width', 500)
  9. pd.set_option('display.max_columns', 100)
  10. pd.set_option('display.notebook_repr_html', True)
  11. import seaborn as sns
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement