You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using IndexedTables, DataValues
x =table([1, 2, 3, 4], [11, 12, 13, 14], names = [:a, :b], pkey =:a)
y =table(DataValueArray([1, 2, 5, 6]), DataValueArray([15, 16, 17, 18]),
names = [:a, :c], pkey =:a)
z1 =join(x, y, how =:left) # this is an error
z2 =join(y, x, how =:left) # this is ok
z3 =join(x, dropna(y), how =:left) # this is also ok
The text was updated successfully, but these errors were encountered:
See reproduced error below:
The text was updated successfully, but these errors were encountered: