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])
Nesta página do site você pode assistir ao vídeo on-line insert function in python Dataframe duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário Amit Mishra 31 Agosto 2021, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 152 vezes e gostou 6 espectadores. Boa visualização!