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
The check for finite index values was very early in the xts
constructor, which could cause problems if order.by wasn't strictly
a numeric vector (e.g. if it was POSIXlt--a list). This was to ensure
the index doesn't contain +/-Inf, NA, or NaN (see #173).
Move the check until after the index has been converted to
POSIXct/numeric, so we can be certain it is a numeric vector.
Fixes#194.
The check for finite index values was very early in the xts
constructor, which could cause problems if order.by wasn't strictly
a numeric vector (e.g. if it was POSIXlt--a list). This was to ensure
the index doesn't contain +/-Inf, NA, or NaN (see #173).
Move the check until after the index has been converted to
POSIXct/numeric, so we can be certain it is a numeric vector.
Fixes#194.
Looks like this is caused by the check added for #173.
The text was updated successfully, but these errors were encountered: