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
Using the order parameter or setting order via factor for ggdotchart does not work.
order
Example
require(data.table) require(ggpubr) # Use order parameter tmp = data.table(x = c('a', 'b', 'c'), y=c(1,2,3)) ggdotchart(tmp, 'x', 'y', add='segment', order=c('a', 'c', 'b')) # Use factor tmp$a = factor(tmp$a, c('c', 'b', 'a')) ggdotchart(tmp, 'x', 'y', add='segment', order=c('a', 'c', 'b'))
In both cases, order is ignored
The text was updated successfully, but these errors were encountered:
utilizes the order of x whensorting = "none" #223
ed3b80d
fixed now, thanks
Sorry, something went wrong.
No branches or pull requests
Using the
order
parameter or setting order via factor for ggdotchart does not work.Example
In both cases, order is ignored
The text was updated successfully, but these errors were encountered: