Insert function in python dataframe
insert() function: This function adds a new column in the dataframe at a specific location. By default, if you add a new column, it is added in the last but with insert, you can add a column at any position. 3 things are important when we are using insert() function
1. index position: At which position, the value will be added
2. column name: What will be the column name?
3. data values: What data values will be there?
Syntax:
Dataframename.insert(indexposition,”columnname”,datavalue)
Case 1: if we want to add a new column “mobile_no” and have the same value for the entire column at 2nd position, we will write
df.insert(1,”mobile_no”,”12345”)
Case 2: if we want to add a new column “fee” and want to have the different values for the entire column at 1st position, we will write
df.insert(0,”fee”,[400,500,600,400])
Sur cette page du site, vous pouvez voir la vidéo en ligne insert function in python Dataframe durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur Amit Mishra 31 août 2021, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 152 fois et il a aimé 6 téléspectateurs. Bon visionnage!