Pandas
keyboard_arrow_down 655 guides
chevron_leftProperties
check_circle
Mark as learned thumb_up
0
thumb_down
0
chat_bubble_outline
0
Comment auto_stories Bi-column layout
settings
Pandas DataFrame | values property
schedule Aug 10, 2023
Last updated local_offer
Tags Python●Pandas
tocTable of Contents
expand_more Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!
Start your free 7-days trial now!
Pandas DataFrame.values
property returns the values of the DataFrame as a 2D NumPy array. Note that modifying DataFrame.values
would also modify the original DataFrame, and vice versa.
NOTE
The to_numpy(~)
method also returns the value of the DataFrame as a 2D NumPy array, but it allows for a bit more flexibility such as being able to specify the return type.
Return Value
A NumPy array
holding all the values of the source DataFrame.
Examples
Basic usage
Consider the following DataFrame:
df
A B0 1 31 2 4
Its values
property is as follows:
df.values
array([[1, 3], [2, 4]])
The return value is a NumPy array holding all the values of the source DataFrame.
Mutations
Suppose we modify the values
property:
df.values[0,0] = 5df
A B0 5 31 2 4
Notice how the original DataFrame df
reflected the modification.
Published by Isshin Inada
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Comment
Citation
Ask a question or leave a feedback...
Official Pandas Documentation
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.values.html
thumb_up
0
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!