Altair and Polars Integration: Onboarding Notes

Key Points

import altair as alt
import polars as pl
df = pl.DataFrame({"x": [1, 2], "y": [3, 4]})
chart = alt.Chart(df).mark_line()

Additional Notes


This file is intended for onboarding AI agents and developers working with Altair and Polars in this codebase.