Hi,
I have two dataframes (generated by loading CSV files with loadd) that I would like to join with Outerjoin.
mat1 =
code1
A
B
C
D
mat2 =
code1 code2
A aaa
C ccc
Outerjoin(mat1, 1, mat2, 1) =
code1 code2
A aaa
B ccc
C
D
which is not what I had hoped for.
Is there a bug, or am I doing something wrong?