Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: The method of obtaining a certain cell or slice of the dataframe is confusing and unclear #61232

Open
1 of 3 tasks
zyy37 opened this issue Apr 4, 2025 · 0 comments
Open
1 of 3 tasks
Labels
Enhancement Needs Triage Issue that has not been reviewed by a pandas team member

Comments

@zyy37
Copy link

zyy37 commented Apr 4, 2025

Feature Type

  • Adding new functionality to pandas

  • Changing existing functionality in pandas

  • Removing existing functionality in pandas

Problem Description

The method of obtaining a certain cell or slice of the dataframe is confusing and unclear, such as using loc, iloc, at, iat, and the operator [], etc. For example, df.loc[row_label, col_label] and df.iloc[row_index, col_index]. If loc is a property, it is better to be a variable but now it is a verb or something rather than a df buffer. The user wants to take the cell value, so the behavior of loc is like a member function and the () operator should be used to pass parameters. However, you are using the operator [], but the object of the operator [] is usually an instance, which is a confusing place.

And when taking two columns or slices at the same time, for example, taking one column and one row, the expression value = df.loc[1, 'B'], where the operator [] represents the horizontal and vertical coordinate information, and taking two columns and one row, row_data = df.loc['row_label', ['col1', 'col2']], where the second operator [] has both vertical coordinate information but behaves like a list or tuple instead of the former, this is another confusing aspect.

In mathematics, the coordinate values such as (3, 4) represent the horizontal and vertical coordinates respectively, as well as the () operator. I hope that the operation rules you define should conform to common customs or competition analysis or benchmarking such as numpy. thank you.

Feature Description

n/a

Alternative Solutions

n/a

Additional Context

No response

@zyy37 zyy37 added Enhancement Needs Triage Issue that has not been reviewed by a pandas team member labels Apr 4, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Enhancement Needs Triage Issue that has not been reviewed by a pandas team member
Projects
None yet
Development

No branches or pull requests

1 participant