-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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: Add 'is_' method to Index for identity checks #4909
Conversation
worth it to push these into one of the mixin classes so that could be used on a series/frame? I guess in that case easier just to do |
@jreback it's really easy to do with index, because they always go through |
yep....as I was writing I was like...naw! |
One upside to this: makes |
so we need |
I guess though could be |
vbench results:
|
run with |
So mostly okay? I can't really tell. We can squeeze a bit more performance out by removing the function call, so the line would be:
that said, could be extra overhead from view creation too. What do you think? |
@jreback also, for most intents and purposes, it really doesn't matter if two indices have the same names or not, we just want to know if their labels are the same. And that's pretty much the entire function of |
@jtratner yep...this all looks fine...perf is about the same (you might need a very specific test to pick up if you actually changing something) |
i'll run vbench one more time just to see if anything changes drastically ... biggest hit is 10 ms... |
orm aybe not if @jreback thinks its okay....honestly i feel unsure whenever vbench is not less than about 1.15 ish...i have no idea of the variability of the timings |
end of vbench:
|
that's a weird vbench...the frame_fillna_many_columns_pad. |
looks fine to me |
Adds a method that can quickly tell whether something is a view or not (in the way that actually matters). CLN: change 'is' check to 'is_' check in 'equals()'
ENH: Add 'is_' method to Index for identity checks
Closes #4859.
Adds a method that can quickly tell whether something is a view or not
(in the way that actually matters). Also changes checks in
equals()
touse
is_
rather thanis
.