Default imports

This is a set of default imports that will come in handy for most of your experiments. Go ahead and run this to validate your docker based graphlab installation.


In [4]:
import os, sys
import graphlab as gl
import graphlab.aggregate as agg
from tqdm import tqdm_notebook as tqdm

# set canvas path
# gl.canvas.set_target('ipynb')

%matplotlib inline
import matplotlib
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns

The license message from GraphLab means your installation works. Explore the notebooks now!