readr
readr copied to clipboard
Document parse_factor produces different levels than base factor
This is specified in parse_factor docs on the level argument, but maybe worth emphasizing that the levels produced will be different than base R factor, which does it by sorting.
parse_factor(c("b", "a"))
factor(c("b", "a"))