This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
#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