This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import division | |
import pandas as pd | |
import numpy as np | |
# get churn.csv from here: https://raw.githubusercontent.com/EricChiang/churn/master/data/churn.csv | |
churn_df = pd.read_csv('churn.csv') | |
col_names = churn_df.columns.tolist() | |
print "Column names:" | |
print col_names |