Hay múltiples operaciones que se pueden realizar sobre los ex en Pandas. Veamos cómo operar en el índice de filas y columnas con ejemplos.
Para obtener un enlace al archivo CSV utilizado en el código, haga clic aquí .
Restablece el nombre del índice de fila.
Código # 1: podemos restablecer el nombre del índice de DataFrame usando el df.index.name
atributo.
# importing pandas as pd import pandas as pd # read the csv file and create DataFrame df = pd.read_csv('nba.csv') # Visualize the dataframe print(df)
Producción :
# set the index name df.index.name = 'Index_name' # Print the DataFrame print(df)
Producción :
Código #2: podemos restablecer el nombre del índice DataFrame usando df.rename_axis()
la función.
# importing pandas as pd import pandas as pd # read the csv file and create DataFrame df = pd.read_csv('nba.csv') # reset the index name df.rename_axis('Index_name', axis = 'rows') # Print the DataFrame print(df)
Producción :
Restablecer el nombre de los ejes de columna.
Código # 1: podemos restablecer el nombre de los ejes de la columna DataFrame usando df.rename_axis()
la función.
# importing pandas as pd import pandas as pd # read the csv file and create DataFrame df = pd.read_csv('nba.csv') # Visualize the dataframe print(df)
Producción :
Como podemos ver en la salida, los ejes de columna del df DataFrame no tienen ningún nombre. Entonces, estableceremos el nombre usando la df.rename_axis()
función.
# set the name of column axes df.rename_axis('Column_Index_name', axis = 'columns') # Print the DataFrame print(df)
Producción :
Publicación traducida automáticamente
Artículo escrito por Shubham__Ranjan y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA