Sunday, July 17, 2022

[FIXED] How to disable R warning: timezone of object (UTC) is different than current timezone ()

Issue

I keep getting this warning: timezone of object (UTC) is different than current timezone (). My current timezone is "EET", as shown by Sys.timezone().

Is there a way to change the R timezone to UTC, instead of it taking the one from my system? Or to disable the warning?


Solution

Try this:

Sys.setenv(TZ = "UTC")


Answered By - G. Grothendieck
Answer Checked By - Cary Denson (PHPFixing Admin)

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.