-
Notifications
You must be signed in to change notification settings - Fork 411
New issue
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
Plots not showing in Jupyter/.ipynb #785
Comments
Hi @Dorota-D, Thank you for reporting the issue. Looks like AutoML overwrites the For quick fix please execute: import matplotlib
matplotlib.use('WebAgg') you can check list of available backends here https://matplotlib.org/stable/users/explain/figure/backends.html#interactive-backends Please let me know if it works for you. |
Hi Piotr, Thanks for your quick reply. |
Another thing - I've added another cell at the end:
I got the following error message: UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown |
One more try:
|
Works! Thank you! |
Great! May I ask what is your use case for AutoML? I will reopen the issue, because it should be fixed in the package. |
Research :) Our group developed simple models in Weka, but we'd like to integrate ML with our other scripts. scikit is ok, but we feel we need something robust and quick. So, now we're testing AutoML. |
Environment:
I wanted to plot the optimized ML model fits in my jupyter notebook file, but the plots did not show up - only the text line, e.g., <Axes: xlabel='total_bill', ylabel='tip'>. Using %matplotlib inline did not help. I can still save the plots as JPG, but that is not the point. I found that the problem appears when I activate AutoML. This conflict appears even in the most basic example:
Here, the plot shows up.
After adding a cell with AutoML, the plot "disappears".
How can I resolve this?
The text was updated successfully, but these errors were encountered: