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
Code:
ggplot({'x': [], 'y': []}, aes('x', 'y')) + \ geom_point() + \ ggmarginal("t", layer=geom_histogram())
Result:
Variable not found: '..density..'. Variables in data frame: ['x', 'y']
But:
'..density..'
'..count..'
The text was updated successfully, but these errors were encountered:
This code snippet also doesn't work:
from lets_plot import * LetsPlot.setup_html() ggplot(data={'x': [1, 2], 'y': [1, 2]}) + \ geom_smooth(aes('x', 'y'), tooltips=layer_tooltips().line('@..se..'))
Result: 'Variable not found: '..se..'. Variables in data frame: ['y', '..ymin..', '..ymax..', 'x']'
'Variable not found: '..se..'. Variables in data frame: ['y', '..ymin..', '..ymax..', 'x']'
Sorry, something went wrong.
Fix #681 - "Variable not found" error in ggmarginal
1794aec
a31e36e
IKupriyanov-HORIS
No branches or pull requests
Code:
Result:
Variable not found: '..density..'. Variables in data frame: ['x', 'y']
But:
'..density..'
when current stat is'..count..'
The text was updated successfully, but these errors were encountered: