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
In a jupyter cell it does not display the charts if there are other print statements either before or after the display call.
from altair import Chart, load_dataset data = load_dataset('cars', url_only=True) a=Chart(data).mark_point().encode( x='Horsepower:Q', y='Miles_per_Gallon:Q', color='Origin:N', ) print("hhdhddh") a.display()
The text was updated successfully, but these errors were encountered:
Thanks! This is a known issue in ipyvega. See vega/ipyvega#62
Sorry, something went wrong.
No branches or pull requests
In a jupyter cell it does not display the charts if there are other print statements either before or after the display call.
The text was updated successfully, but these errors were encountered: