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
I observe this bug on R 3.2.2, with the latest Git version (2015-11-05) of dplyr, on a 64-bits Linux system (though the problem is also present in the released 0.4.3 version in R 3.2.1 on a Windows system).
The text was updated successfully, but these errors were encountered:
This is I think fixed now. @huftis can you confirm please, I'm always somewhat tense about encodings. @hadley you know how I could test this ? IIRC having "løpenummer" in a test file will cause some other issue on e.g. windows.
When the join column(s) of two data frames has the same name but different internal encodings, the
dplyr
join functions fail. Example:The two data frames can be joined by the ‘løpenummer’ column:
But actually trying to join them fails with an error message:
The
left_join()
function does recognise that the data frames can be joined by ‘løpenummer’, but still fails:Note that the ‘ø’ character is different in this error message. (On my system it’s shown as the ‘unknown character’ glyph.)
The two ‘løpenummer’ variables do have the exact same name, as confirmed by:
But the character encoding is different:
I observe this bug on R 3.2.2, with the latest Git version (2015-11-05) of dplyr, on a 64-bits Linux system (though the problem is also present in the released 0.4.3 version in R 3.2.1 on a Windows system).
The text was updated successfully, but these errors were encountered: