-
Notifications
You must be signed in to change notification settings - Fork 21
Add ==(::NullableArray, ::NullableArray) and ==(::NullableArray, ::AbstractArray) #84
base: master
Are you sure you want to change the base?
Conversation
Current coverage is
|
…stractArray) Fixes JuliaStats#82.
Let's merge this? I need it for JuliaData/DataFrames.jl#1008. |
We should first define |
This is probably also effected by the discussion in #85? I.e. the semantics for |
I don't think so, since |
@davidagold I agree with you (I'm always in favor of returning a |
@davidanthoff Hmm, so it does. Good point. I don't think that's appropriate. This may be unpopular, but I think the behavior described in this PR is more appropriately expressed by
@nalimilan How do you feel about using |
The current behavior of If we were to return a
I'm actually using |
I see. And the behavior implemented herein is different from that of |
Yes, |
I see why having |
Honestly, I don't even know when comparing two data frames could really be useful apart from testing or checking results. My proposal just tries to preserve consistency with |
Yeah, but checking results might be quite a common and useful thing? I don't know, you load data and manipulate data in some way (via Query.jl or jplyr.jl), and then you change your query to be more concise and want to make sure you still produce the same result set. That is something that might be quite common, but it would require a |
As I said, there's |
That's probably not the best way to convince oneself of the equality of those queries, anyway =p |
Fixes #82.