-
Notifications
You must be signed in to change notification settings - Fork 8
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
FYI: Pandas and numpy warnings on final 3 tests of clean install of tax-microdata-benchmarking as of PR 134 #135
Comments
@nikhilwoodruff, All the remaining warnings are in code you wrote. |
After the merge of PR #178, we have these warnings when activating the-usually-skipped ============================ warnings summary ============================ tests/test_create_tmd_variables.py: 458 warnings The first warning was reported in a The second warning is from the Note that PR #180 follows the warning suggestion on how to defragment the All the other warning originally reported in this issue have been fixed by code improvements merged during August 2024. |
Thank you @martin Holmer ***@***.***>
…On Sun, Sep 1, 2024 at 3:17 PM Martin Holmer ***@***.***> wrote:
Closed #135
<#135> as
completed via #180
<#180>.
—
Reply to this email directly, view it on GitHub
<#135 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABR4JGABQY55DZR52ANRLEDZUNR4DAVCNFSM6AAAAABKWX6YJGVHI2DSMVQWIX3LMV45UABCJFZXG5LFIV3GK3TUJZXXI2LGNFRWC5DJN5XDWMJUGA4TKNBVGEZTANA>
.
You are receiving this because you authored the thread.Message ID:
<PSLmodels/tax-microdata-benchmarking/issue/135/issue_event/14095451304@
github.com>
|
FYI. On clean install of tax-microdata-benchmarking as of PR 134:
I get several pandas and numpy warnings. I am not sure if new code, or older code, is triggering these warnings, but I don't recall seeing them before:
frame.insert
many times, which has poor performance. Consider joining all columns at once using pd.concat(axis=1) instead.interpolation=
argument to percentile was renamed tomethod=
, which has additional options.Users of the modes 'nearest', 'lower', 'higher', or 'midpoint' are encouraged to review the method they used. (Deprecated NumPy 1.22)
Examples below:
The text was updated successfully, but these errors were encountered: