Adding all project files
This commit is contained in:
parent
6c9e127bdc
commit
cd4316ad0f
42289 changed files with 8009643 additions and 0 deletions
20
venv/Lib/site-packages/altair/examples/anscombe_plot.py
Normal file
20
venv/Lib/site-packages/altair/examples/anscombe_plot.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
"""
|
||||
Anscombe's Quartet
|
||||
------------------
|
||||
|
||||
This example shows how to use the column channel to make a trellis plot. Anscombe's Quartet is a famous dataset constructed by Francis Anscombe. Common summary statistics are identical for each subset of the data, despite the subsets having vastly different characteristics.
|
||||
"""
|
||||
# category: case studies
|
||||
import altair as alt
|
||||
from vega_datasets import data
|
||||
|
||||
source = data.anscombe()
|
||||
|
||||
alt.Chart(source).mark_circle().encode(
|
||||
alt.X('X', scale=alt.Scale(zero=False)),
|
||||
alt.Y('Y', scale=alt.Scale(zero=False)),
|
||||
alt.Facet('Series', columns=2),
|
||||
).properties(
|
||||
width=180,
|
||||
height=180,
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue