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
Description color argument in qhistogram is not working
condiitions 2 and 3 seem nonsense: (prob from qbarplot)
df[["colour"]] <- if (vline & filtercol != 0) { if (filtercol == 1 ) (df$"value" > vline) else if (filtercol == -1 ) (df$"value" < vline) } else if (length(col) == length(vec)) { as.character(col) } else { as.character(rep(col, length(vec))[1:length(vec)]) }
The text was updated successfully, but these errors were encountered:
Related to #33
Here’s the formatted document with the provided content, including code blocks using backticks:
### Sampling and basic qhistogram ```r xxx <- sample(1:100, 10000, replace = TRUE) qhistogram(xxx)
qhistogram(xxx, palette_use = "aaas")
qhistogram(xxx, col = 1, vline = 33, filtercol = TRUE, suffix = "madonna", save = FALSE)
qhistogram(xxx, col = "brown", vline = 33, filtercol = TRUE, suffix = "madonna", save = FALSE)
Let me know if you need further edits!
Sorry, something went wrong.
No branches or pull requests
Description
color argument in qhistogram is not working
condiitions 2 and 3 seem nonsense:
(prob from qbarplot)
The text was updated successfully, but these errors were encountered: