python dataframe re index code example
Example 1: python initialise dataframe
import pandas as pd
data = [[0, 0, 0] , [1, 1, 1]]
columns = ['A', 'B', 'C']
df = pd.DataFrame(data, columns=columns)
Example 2: dataframe get index name
In [7]: df.index.name
Out[7]: 'Index Title'
In [8]: df.index.name = 'foo'
In [9]: df.index.name
Out[9]: 'foo'
In [10]: df
Out[10]:
Column 1
foo
Apples 1
Oranges 2
Puppies 3
Ducks 4