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
from lets_plot import * from plotnine.data import mpg LetsPlot.setup_html() ( ggplot(mpg) + aes(x='hwy') + aes(y='cty') + geom_point() )
from lets_plot import * from plotnine.data import mpg LetsPlot.setup_html() ( ggplot(mpg) + aes(x='hwy', y='cty') + geom_point() )
from plotnine import * from plotnine.data import mpg LetsPlot.setup_html() ( ggplot(mpg) + aes(x='hwy') + aes(y='cty') + geom_point() )
from plotnine import * from plotnine.data import mpg LetsPlot.setup_html() ( ggplot(mpg) + aes(x='hwy', y='cty') + geom_point() )
The text was updated successfully, but these errors were encountered:
6771aa6
alshan
No branches or pull requests
Bug: using aes() multiple times loses all but the last one
Using exactly one aes() does the right thing
Expected behavior (from plotnine)
The text was updated successfully, but these errors were encountered: