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
plot.xts() always colors the histogram green/red when the series is above/below zero, regardless of col specified by the user.
plot.xts()
col
library(xts) data(sample_matrix) x <- as.xts(sample_matrix, dateFormat="Date") layout(matrix(1:2, 2, 1)) plot(x[,4], type = "h", col = "grey") plot(coredata(x[,4]), type = "h", col = "grey")
The text was updated successfully, but these errors were encountered:
a395cf2
joshuaulrich
No branches or pull requests
Description
plot.xts()
always colors the histogram green/red when the series is above/below zero, regardless ofcol
specified by the user.Minimal, reproducible example
The text was updated successfully, but these errors were encountered: