#Import needed libraries
import altair as alt
from vega_datasets import data
#get dataset
seattle_weather = data.seattle_weather()
#Create chart
alt.Chart(seattle_weather).mark_point().encode(
x='temp_max',
y='temp_min',
)
view raw altiar_ex.py hosted with ❤ by GitHub