After googling for a couple of hours I have not found a solution to this problem.
Basically when I run read_csv("some_file.csv")
function from readr
package I get the following error:
Error: Unknown TZ UTC
and csv is not read.
The only way I can read the CSV is this way:
read_csv("some_file.csv",locale=locale(tz="Australia/Sydney"))
Sydney being my timezone.
But I'd rather fix the error than work around it if possible. Does anybody know how to fix the UTC error permanently? E.g. Startup instructions? Ta.