Yo = Plot.plot({
marks: [
Plot.dot(ncaabasketballstats20222, {
x: "points_per_game",
y: "win_percentage",
tip: true,
fill: "navy"
}),
Plot.linearRegressionY(ncaabasketballstats20222, {
x: "points_per_game",
y: "win_percentage",
tip: true,
fill: "navy"
})
]
})