Inserting a row in Pandas DataFrame is a very straight forward process and we have already discussed approaches in how insert rows at the start of the Dataframe. Now, let’s discuss the ways in which we can insert a row at any position in the dataframe having integer based index.
Solution #1 : There does not exist any in-built function in pandas which will help us to insert a row at any specific position in the given dataframe. So, we are going to write our own customized function to achieve the result.
Note : Inserting rows in-between the rows in Pandas Dataframe is an inefficient operation and the user should avoid it.
Python3
import pandas as pd
df = pd.DataFrame({ 'Date' :[ '10/2/2011' , '12/2/2011' , '13/2/2011' , '14/2/2011' ],
'Event' :[ 'Music' , 'Poetry' , 'Theatre' , 'Comedy' ],
'Cost' :[ 10000 , 5000 , 15000 , 2000 ]})
print (df)
|
Output :

Now we will write a customized function to insert a row at any given position in the dataframe.
Python3
def Insert_row(row_number, df, row_value):
start_upper = 0
end_upper = row_number
start_lower = row_number
end_lower = df.shape[ 0 ]
upper_half = [ * range (start_upper, end_upper, 1 )]
lower_half = [ * range (start_lower, end_lower, 1 )]
lower_half = [x.__add__( 1 ) for x in lower_half]
index_ = upper_half + lower_half
df.index = index_
df.loc[row_number] = row_value
df = df.sort_index()
return df
row_number = 2
row_value = [ '11/2/2011' , 'Wrestling' , 12000 ]
if row_number > df.index. max () + 1 :
print ( "Invalid row_number" )
else :
df = Insert_row(row_number, df, row_value)
print (df)
|
Output :

In case the given row_number is invalid, say total number of rows in dataframe are 100 then maximum value of row_number can be 101, i.e. adding row at the last of dataframe. Any number greater than 101 will given an error message.
Example #2: Another customized function which will use Pandas.concat() function to insert a row at any given position in the dataframe.
Python3
import pandas as pd
df = pd.DataFrame({ 'Date' :[ '10/2/2011' , '12/2/2011' , '13/2/2011' , '14/2/2011' ],
'Event' :[ 'Music' , 'Poetry' , 'Theatre' , 'Comedy' ],
'Cost' :[ 10000 , 5000 , 15000 , 2000 ]})
print (df)
|
Output :

A customized function to insert a row at any given position in the dataframe.
Python3
def Insert_row_(row_number, df, row_value):
df1 = df[ 0 :row_number]
df2 = df[row_number:]
df1.loc[row_number] = row_value
df_result = pd.concat([df1, df2])
df_result.index = [ * range (df_result.shape[ 0 ])]
return df_result
row_number = 2
row_value = [ '11/2/2011' , 'Wrestling' , 12000 ]
if row_number > df.index. max () + 1 :
print ( "Invalid row_number" )
else :
df = Insert_row_( 2 , df, row_value)
print (df)
|
Output :

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
08 Sep, 2021
Like Article
Save Article