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
import altair as alt alt.data_transformers.enable('data_server') from vega_datasets import data cars = data.cars() chart = alt.Chart(cars).mark_point().encode( x='Horsepower', y='Miles_per_Gallon', color='Origin', ).interactive() chart.serve()
Examining the HTML from the above chart, we see that the data is not transformed.
The text was updated successfully, but these errors were encountered:
Turns out we need
chart.serve(override_data_transformer=False)
This default option is meant to disable MaxRowsError in the common case... perhaps there's a less obtrusive way to do that?
MaxRowsError
Sorry, something went wrong.
I think given the intent of the keyword, we should introduce something like alt.data_transformers.set_max_rows(None) and use that function instead.
alt.data_transformers.set_max_rows(None)
Successfully merging a pull request may close this issue.
Examining the HTML from the above chart, we see that the data is not transformed.
The text was updated successfully, but these errors were encountered: