We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
split.xts calls endpoints(x, on = f, k = k) if is.character(f) is true. But that results in an error if f has length > 1.
split.xts
endpoints(x, on = f, k = k)
is.character(f)
f
require(xts) data(sample_matrix) x <- as.xts(sample_matrix) split(x, format(index(x), "%m")) Error in endpoints(x, on = f, k = k) : unsupported "on" argument
split.zoo should be dispatched if f is character and has length > 1.
split.zoo
The text was updated successfully, but these errors were encountered:
03b79d8
No branches or pull requests
split.xts
callsendpoints(x, on = f, k = k)
ifis.character(f)
is true. But that results in an error iff
has length > 1.split.zoo
should be dispatched iff
is character and has length > 1.The text was updated successfully, but these errors were encountered: