Platform
Resources
Pricing
Sign in
Get started
David Kouřil
yah, thats me getting my hands dirty.
Workspace
Fork
Public
By
David Kouřil
Edited
May 15
1
Insert cell
Insert cell
Plot
.
plot
(
{
height
:
200
,
x
:
{
tickFormat
:
"d"
,
label
:
null
}
,
y
:
{
label
:
"Reviews"
,
grid
:
true
}
,
color
:
{
legend
:
true
}
,
marks
:
[
Plot
.
barY
(
tidyReviews
,
{
x
:
"year"
,
y
:
"submissionsNum"
,
fill
:
"venue"
,
}
)
]
}
)
Insert cell
reviews
=
FileAttachment
(
"reviews@4.json"
)
.
json
(
)
Insert cell
tidyReviews
=
reviews
.
reviews
.
map
(
(
r
)
=>
(
{
venue
:
r
.
venue
,
year
:
r
.
year
,
track
:
r
.
track
,
submissionsNum
:
r
.
submissions
.
length
}
)
)
;
Insert cell
Purpose-built for displays of data
Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Try it for free
Learn more
Fork
View
Export
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
reviews
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
tidyReviews
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML