Public
Edited
Dec 13, 2023
Insert cell
Insert cell
train.csv
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
Plot.plot({
Title: "Songs with Swear Words",
height: 1000,
width: 1000,
marginLeft: 70,
marginRight: 70,
marginBottom: 70,
marginTop: 70,
style: {fontSize: 24},
marks: [
Plot.density(song, { filter: ({explicit}) => !explicit, x: "danceability", y: "energy", stroke: "explicit" }),
//Plot.dot(song, { x: "energy", y: "popularity", r:1 })
]
})
Insert cell
subsample = song.slice(0, 100)
Insert cell
import {PlotMatrix} with {subsample as data} from "@dis-2023-fall/autoplot-matrix"
Insert cell
PlotMatrix()

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.
Learn more