Error: 'DataFrame' object has no attribute 'vaLues'
时间: 2023-09-25 08:11:28 浏览: 53
The error message " 'DataFrame' object has no attribute 'vaLues' " indicates that you are trying to access an attribute called "vaLues" that does not exist in a Pandas DataFrame object.
It is likely that you have misspelled the attribute name. The correct attribute name is "values" with a lowercase "v". Make sure that you are using the correct spelling and case for the attribute name.
For example, instead of using:
```
df.vaLues
```
Use:
```
df.values
```
This should solve the error message.
阅读全文