I want to use readr::parse_number()
for a character vector that was guessed as type "number" by readr::guess_parser()
I can construct a locale to make this work using readr::parse_number( readr::locale(decimal_mark = <a mark to be determined at run time>) )
So the issue is the system locale is unknown until runtime and could be anywhere in the world. Is there a way to determine the decimal mark from the system locale?