Answers for "df.set_index"

3

how to set index pandas

# assignment copy
df = df.set_index('month')

# or inplace
df.set_index('month', inplace=True)

#      year   sale  month            month  year   sale
#  0   2012   55    1                1      2012   55
#  1   2014   40    4       =>       4      2014   40
#  2   2013   84    7                7      2013   84
#  3   2014   31    10               10     2014   31
Posted by: Guest on March-15-2021
3

pandas create a column from index

df.reset_index(level=0, inplace=True)
Posted by: Guest on February-13-2020
0

pandas df make set index column

df.reset_index(inplace=True)
df = df.rename(columns = {'index':'new column name'})
Posted by: Guest on September-24-2021
5

how to change index in dataframe python

index = [1,2]
df.index = index
Posted by: Guest on April-23-2020
0

Pandas Set index

>>> college_idx = college.set_index('instnm')>>> sats = college_idx[['satmtmid', 'satvrmid']].dropna()>>> sats.head()
Posted by: Guest on August-09-2021

Python Answers by Framework

Browse Popular Code Answers by Language