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
In the above code block, the dataframes ts_format and ts_no_format should be identical. However, since ts_no_format does not see the format, it treats the string 2/1/2016 7:00:00 AM as Feb 1st 2016 instead of the TRUE date Jan 2nd 2016.
The format specified in the format argument matches the format of the string timestamp. This can be easily verified by checking the format of any string timestamp with date >12.
Not sure how much this bug would affect the performance, but would be nice if the authors could fix it.
The text was updated successfully, but these errors were encountered:
There is a bug in the
load_water(..)
function:In the above code block, the dataframes
ts_format
andts_no_format
should be identical. However, sincets_no_format
does not see the format, it treats the string2/1/2016 7:00:00 AM
as Feb 1st 2016 instead of the TRUE date Jan 2nd 2016.The format specified in the
format
argument matches the format of the string timestamp. This can be easily verified by checking the format of any string timestamp with date >12.Not sure how much this bug would affect the performance, but would be nice if the authors could fix it.
The text was updated successfully, but these errors were encountered: