Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

pandas reset index from 0

import pandas as pd
data = {'Name': ['Bob', 'Dilan', 'is ', 'alive', '!']}
index = {'a', 'b', 'c', 'd', 'e'}
df = pd.DataFrame(data, index)
df
    Name
b    Bob
a  Dilan
d    is 
c  alive
e      !

df.reset_index(inplace = True)
df
  index   Name
0     b    Bob
1     a  Dilan
2     d    is 
3     c  alive
4     e      !
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #pandas #reset #index
ADD COMMENT
Topic
Name
4+1 =