Pandas DataFrame es una estructura de datos tabulares potencialmente heterogénea, de tamaño mutable, bidimensional con ejes etiquetados (filas y columnas). Las operaciones aritméticas se alinean en las etiquetas de fila y columna. Se puede considerar como un contenedor similar a un dictado para objetos Series. Esta es la estructura de datos principal de Pandas.
El atributo Pandas DataFrame.values
devuelve una representación Numpy del DataFrame dado.
Sintaxis: DataFrame.valores
Parámetro: Ninguno
Devuelve: array
Ejemplo n.º 1: use DataFrame.values
el atributo para devolver la representación numérica del marco de datos dado.
# importing pandas as pd import pandas as pd # Creating the DataFrame df = pd.DataFrame({'Weight':[45, 88, 56, 15, 71], 'Name':['Sam', 'Andrea', 'Alex', 'Robin', 'Kia'], 'Age':[14, 25, 55, 8, 21]}) # Print the DataFrame print(df)
Producción :
Ahora usaremos DataFrame.values
el atributo para devolver la representación numpy del DataFrame dado.
# return the numpy representation of # this dataframe result = df.values # Print the result print(result)
Producción :
As we can see in the output, the DataFrame.values
attribute has successfully returned the numpy representation of the given DataFrame.
Example #2: Use DataFrame.values
attribute to return the numpy representation of the given DataFrame.
# importing pandas as pd import pandas as pd # Creating the DataFrame df = pd.DataFrame({"A":[12, 4, 5, None, 1], "B":[7, 2, 54, 3, None], "C":[20, 16, 11, 3, 8], "D":[14, 3, None, 2, 6]}) # Print the DataFrame print(df)
Producción :
Ahora usaremos DataFrame.values
el atributo para devolver la representación numpy del DataFrame dado.
# return the numpy representation of # this dataframe result = df.values # Print the result print(result)
Salida:
como podemos ver en la salida, el DataFrame.values
atributo ha devuelto con éxito la representación numpy del DataFrame dado.
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