Platform
Solutions
Resources
Pricing
Sign in
Sign up
Bright
Workspace
Fork
Public
By
Bright
Edited
Mar 12, 2023
Fork of
Marks and Channels / Observable Plot
Insert cell
Insert cell
Insert cell
sales
=
[
{
units
:
10
,
fruit
:
"peach"
}
,
{
units
:
20
,
fruit
:
"pear"
}
,
{
units
:
40
,
fruit
:
"plum"
}
,
{
units
:
30
,
fruit
:
"plum"
}
]
Insert cell
Insert cell
Plot
.
dot
(
sales
,
{
x
:
"units"
,
y
:
"fruit"
}
)
.
plot
(
)
Insert cell
Insert cell
Insert cell
Plot
.
dot
(
sales
,
{
x
:
d
=>
d
.
units
*
1000
,
y
:
d
=>
d
.
fruit
}
)
.
plot
(
)
Insert cell
Insert cell
Plot
.
dot
(
sales
,
{
x
:
d
=>
d
.
units
,
y
:
d
=>
d
.
fruit
}
)
.
plot
(
{
x
:
{
label
:
"units →"
}
}
)
Insert cell
Insert cell
index
=
[
0
,
1
,
2
,
3
]
// any array of suitable length
Insert cell
units
=
[
10
,
20
,
40
,
30
]
// x₁, x₂, …
Insert cell
fruits
=
[
"peach"
,
"pear"
,
"plum"
,
"plum"
]
// y₁, y₂, …
Insert cell
Plot
.
dot
(
index
,
{
x
:
units
,
y
:
fruits
}
)
.
plot
(
)
Insert cell
Insert cell
xy
=
[
[
10
,
"peach"
]
,
// x₁, y₁
[
20
,
"pear"
]
,
// x₂, y₂
[
40
,
"plum"
]
,
// etc.
[
30
,
"plum"
]
]
Insert cell
Plot
.
dot
(
xy
)
.
plot
(
)
Insert cell
Insert cell
Plot
.
plot
(
{
marks
:
[
Plot
.
dot
(
[
[
10
,
"peach"
]
]
)
,
// x₁, y₁
Plot
.
dot
(
[
[
20
,
"pear"
]
]
)
,
// x₂, y₂
Plot
.
dot
(
[
[
40
,
"plum"
]
]
)
,
// etc.
Plot
.
dot
(
[
[
30
,
"plum"
]
]
)
]
}
)
Insert cell
Insert cell
Plot
.
plot
(
{
marks
:
[
Plot
.
dot
(
sales
,
{
x
:
"units"
,
y
:
"fruit"
}
)
,
Plot
.
ruleX
(
[
0
]
)
// a rule at x = 0
]
}
)
Insert cell
Insert cell
Plot
.
barX
(
sales
,
{
x
:
"units"
,
y
:
"fruit"
}
)
.
plot
(
)
// bars extends from x = 0
Insert cell
Insert cell
Insert cell
Plot
.
barX
(
sales
,
{
x1
:
0
,
x2
:
"units"
,
y
:
"fruit"
}
)
.
plot
(
)
Insert cell
Insert cell
Plot
.
barX
(
sales
,
{
x1
:
0
,
x2
:
"units"
,
y
:
"fruit"
,
fillOpacity
:
0.5
}
)
.
plot
(
)
Insert cell
Insert cell
Plot
.
barX
(
sales
,
Plot
.
groupY
(
{
x
:
"sum"
}
,
{
x
:
"units"
,
y
:
"fruit"
}
)
)
.
plot
(
)
Insert cell
Insert cell
Plot
.
plot
(
{
marks
:
[
Plot
.
barX
(
sales
,
{
x
:
"units"
,
y
:
"fruit"
,
fill
:
"steelblue"
}
)
,
Plot
.
ruleX
(
[
0
]
)
]
}
)
Insert cell
Insert cell
Plot
.
plot
(
{
marks
:
[
Plot
.
barX
(
sales
,
{
x
:
"units"
,
y
:
"fruit"
,
fill
:
"fruit"
}
)
,
Plot
.
ruleX
(
[
0
]
)
]
}
)
Insert cell
Insert cell
Plot
.
plot
(
{
marks
:
[
Plot
.
barX
(
sales
,
{
x
:
"units"
,
y
:
"fruit"
,
fill
:
d
=>
d
.
fruit
}
)
,
Plot
.
ruleX
(
[
0
]
)
]
}
)
Insert cell
Insert cell
Plot
.
plot
(
{
marks
:
[
Plot
.
barX
(
sales
,
{
x
:
"units"
,
y
:
"fruit"
,
fill
:
d
=>
d
.
units
>
20
?
"black"
:
"red"
}
)
,
Plot
.
ruleX
(
[
0
]
)
]
}
)
Insert cell
Insert cell
Plot
.
plot
(
{
color
:
{
domain
:
[
"small"
,
"big"
]
,
range
:
[
"red"
,
"black"
]
,
legend
:
true
}
,
marks
:
[
Plot
.
barX
(
sales
,
{
x
:
"units"
,
y
:
"fruit"
,
fill
:
d
=>
d
.
units
>
20
?
"big"
:
"small"
}
)
,
Plot
.
ruleX
(
[
0
]
)
]
}
)
Insert cell
Insert cell
One platform
to build and deploy the best data apps
Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Try it for free
Learn more
Compare fork
Fork
View
Export
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
sales
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
index
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
units
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
fruits
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
xy
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML