create zero dataframe pandas code example
Example 1: display full dataframe pandas
pd.set_option('display.max_rows', None, 'display.max_columns', None)
Example 2: how to change indeces in pandas dataframe
>>> df.set_index('month')
year sale
month
1 2012 55
4 2014 40
7 2013 84
10 2014 31