-
Notifications
You must be signed in to change notification settings - Fork 2
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
Inconsistencies in dataframe due to chained_indexing
#24
Comments
AyanSinhaMahapatra
added a commit
to AyanSinhaMahapatra/scancode-analyzer
that referenced
this issue
Nov 10, 2020
Fixes aboutcode-org#24 by changing functions in `divide_cases`. Also updates test related data into folders. Signed-off-by: Ayan Sinha Mahapatra <[email protected]>
pombredanne
pushed a commit
that referenced
this issue
Nov 10, 2020
Fixes #24 by changing functions in `divide_cases`. Also updates test related data into folders. Signed-off-by: Ayan Sinha Mahapatra <[email protected]>
AyanSinhaMahapatra
added a commit
to AyanSinhaMahapatra/scancode-analyzer
that referenced
this issue
Nov 10, 2020
Using chained indexing in pandas is a source of problems. The pandas documentation provides some details at: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy This commit fixes this by changing functions in results_analyze/divide_cases.py. Also updates test related data into folders. Signed-off-by: Ayan Sinha Mahapatra <[email protected]>
AyanSinhaMahapatra
added a commit
to AyanSinhaMahapatra/scancode-analyzer
that referenced
this issue
Dec 10, 2020
Using chained indexing in pandas is a source of problems. The pandas documentation provides some details at: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy This commit fixes this by changing functions in results_analyze/divide_cases.py. Also updates test related data into folders. Signed-off-by: Ayan Sinha Mahapatra <[email protected]>
AyanSinhaMahapatra
pushed a commit
that referenced
this issue
May 5, 2022
Use virtualenv-embedded libraries
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Docs : https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
Group Location wasn't being added to the dataframe properly because of chained_indexing in the DataFrames (which handles different sizes of data differently even with the same code).
The text was updated successfully, but these errors were encountered: