Public
Edited
Nov 3, 2023
Insert cell
Insert cell
NCAABasketballStats2022.csv
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
ncaabasketballstats2022
X
points_per_game
Y
win_percentage
Color
points_per_game
Size
Facet X
Facet Y
Mark
dot
Type Chart, then Shift-Enter. Ctrl-space for more options.

Insert cell
Plot.plot({
color: { legend: true },
marks: [
Plot.dot(ncaabasketballstats2022, {
x: "points_per_game",
y: "win_percentage",
stroke: "points_per_game",
tip: true,
fill: "gray"
}),
Plot.linearRegressionY(ncaabasketballstats2022, {
x: "points_per_game",
y: "win_percentage"
})
]
})
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