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
This stems from the comments in this issue, im not sure anyone ever opened a ticket to resolve the issue.
The following code gives this error: raises TypeError: can't multiply sequence by non-int of type 'float'
import pandas as pd import numpy as np from ggplot import ggplot, aes, geom_tile, xlab, ylab, ggtitle df = pd.DataFrame({'x': ['a', 'b', 'c', 'a'], 'y': [ 3, 2, 1, 2], 'fill': np.random.random(4)}) ggplot(aes(x='x', y='y', fill='fill'), data=df) + geom_tile() + \ xlab('X Label') + ylab('Y Label') + ggtitle('This is geom_tile!\n')
The text was updated successfully, but these errors were encountered:
Can we get some attention to this?
Sorry, something went wrong.
No branches or pull requests
This stems from the comments in this issue, im not sure anyone ever opened a ticket to resolve the issue.
The following code gives this error: raises TypeError: can't multiply sequence by non-int of type 'float'
The text was updated successfully, but these errors were encountered: