Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

pandas set a column as index

df = pd.DataFrame({'month': [1, 4, 7, 10],
                   'year': [2012, 2014, 2013, 2014],
                   'sale': [55, 40, 84, 31]})

df.set_index('month')
Comment

set index to column pandas

# method A
df = df.set_index('col')
# method B
df['col'] = df.index
Comment

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
Comment

pandas df make set index column

df.reset_index(inplace=True)
df = df.rename(columns = {'index':'new column name'})
Comment

df set index

df.set_index(['col1', 'col2'])
Comment

pd df set index

df.set_index('month')
Comment

Pandas Set index

>>> college_idx = college.set_index('instnm')>>> sats = college_idx[['satmtmid', 'satvrmid']].dropna()>>> sats.head()
Comment

set index pandas

Pandas dataframe set-index
Comment

set index pandas

Pandas dataframe set-index()
Comment

set index pandas

Pandas dataframe set-index
Comment

set index pandas

Pandas dataframe set-index
Comment

set index pandas

Pandas dataframe set-index
Comment

pandas set index

>>> df.index = [x for x in range(1, len(df.values)+1)]
>>> df
             name                  job  score
1  'Pete Houston'  'Software Engineer'     92
2     'John Wick'           'Assassin'     95
3   'Bruce Wayne'             'Batman'     99
4    'Clark Kent'           'Superman'     96
Comment

set index pandas

Pandas dataframe set-index()
Comment

set index pandas

Pandas dataframe set-index()
Comment

PREVIOUS NEXT
Code Example
Python :: copy from folder to folder python 
Python :: python recursive sum of digit 
Python :: how to sum certain columns row wise in python 
Python :: what does class meta do in django 
Python :: list comprehension if else 
Python :: reverse key order dict python 
Python :: print list in reverse order python 
Python :: pandas Unnamed: 0 
Python :: how to delete json object using python? 
Python :: np arange shape 
Python :: pandas read dictionary 
Python :: hello world in python 
Python :: pandas change dtype to timestamp 
Python :: how to open an image in opencv 
Python :: python count multiple characters in string 
Python :: object literal python 
Python :: count unique values pandas 
Python :: How to use threading in pyqt5 
Python :: how to find unique values in a column in pandas 
Python :: run powershell script in python 
Python :: jupyter markdown new line 
Python :: python glob 
Python :: initialize dictionary to zero in python 
Python :: axios django 
Python :: python __init_subclass__ 
Python :: matplotlib bar label 
Python :: python column multiply 
Python :: pip install streamlit 
Python :: add system path python jupytre 
Python :: multiprocessing queue python 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =