-
Notifications
You must be signed in to change notification settings - Fork 163
Closed
Labels
bugAny bugs / errors in datatable; however for severe bugs use [segfault] labelAny bugs / errors in datatable; however for severe bugs use [segfault] label
Milestone
Description
On Ubuntu 16.04 LTS, datatable 0.8.0.dev71
Using the following code
L_dt = dt.Frame(
{
"A": [5, 6, 7, 9],
"B": [7, 8, 9, 10],
}
)
R_dt = dt.Frame(
{
"A": [5, 7],
"B": [7, 9],
"yhat": [1,2]
}
)
R_dt.key=["A", "B"]
L_dt[:,:,dt.join(R_dt)]
IMHO column yhat
should not be valued for keys in L_dt that are not in X_dt.
And this is pandas standard behaviour.
Metadata
Metadata
Assignees
Labels
bugAny bugs / errors in datatable; however for severe bugs use [segfault] labelAny bugs / errors in datatable; however for severe bugs use [segfault] label