In [1]:
import pandas as pd
In [2]:
print pd.__version__
In [3]:
ls
In [5]:
ls ..\data
In [14]:
# download data from https://www.eia.gov/coal/data.php#production
df = pd.read_excel("../data/coalpublic2013.xls", header=2, index_col="MSHA ID")
df.head()
Out[14]:
In [12]:
def test(first="5", second="10"):
"This is test function"
return first+second
In [13]:
test(6,11)
Out[13]:
In [ ]: