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
Consider the following plots:
from lets_plot import * LetsPlot.setup_html() data1 = { 'x': ['a', 'b', 'c'], 'ymin': [1, 1, 2], 'ymax': [3, 2, 3], } data2 = { 'x': ['b', 'a', 'c', 'a', 'b', 'c'], 'y': [2, 1, 3, 3, 1, 2], } ggplot(data1) + \ geom_point(aes(x='x', y='y'), data=data2) + \ geom_linerange(aes(x='x', ymin='ymin', ymax='ymax'))
ggplot(data1) + \ geom_point(aes(x='x', y='y'), data=data2) + \ geom_linerange(aes(x='x', ymin='ymin', ymax='ymax')) + \ scale_x_discrete(reverse=True)
Here we see:
reverse=True
The text was updated successfully, but these errors were encountered:
#327 was fixed by the recent refactorings.
734c4a7
Was fixed by recent refactorings.
Sorry, something went wrong.
98cb909
alshan
No branches or pull requests
Consider the following plots:
Here we see:
reverse=True
when using both plot and layer data.reverse=True
when using both plot and layer data.The text was updated successfully, but these errors were encountered: