In [1]:
import pandas as pd
import numpy as np
import os
import sys
import simpledbf
from getEPH import getEPHdbf
In [2]:
## select the trimester that you like to download ex. t311, t310
trimestre = 't311'
getEPHdbf(trimestre)
In [3]:
ind = pd.read_csv('data/cleanData' + trimestre + '.csv')
ind.head()
Out[3]:
In [4]:
ind2 = pd.read_csv('data/cleanDataHouseHold' + trimestre + '.csv')
ind2.head()
Out[4]:
In [ ]: