Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Pandas DataFrame property: values

DataFrame - values property

The values property is used to get a Numpy representation of the DataFrame.

Only the values in the DataFrame will be returned, the axes labels will be removed.

Syntax:

DataFrame.values

Returns: numpy.ndarray
The values of the DataFrame.

Example:


Download the Pandas DataFrame Notebooks from here.

Previous: DataFrame - select_dtypes() function
Next: DataFrame - axes property