Public
Edited
Nov 19, 2022
8 forks
Importers
44 stars
Insert cell
Insert cell
Plot.plot({
grid: true,
marks: [
Plot.dot(penguins, {
x: "culmen_length_mm",
y: "culmen_depth_mm",
fill: "species"
}),
Plot.line(
penguins,
Plot.regression({
x: "culmen_length_mm",
y: "culmen_depth_mm",
strokeDasharray: [1.5, 4],
strokeWidth: 1.5
})
),
Plot.line(
penguins,
Plot.regression({
x: "culmen_length_mm",
y: "culmen_depth_mm",
stroke: "species"
})
)
]
})
Insert cell
Insert cell
Insert cell
Insert cell
Plot.plot({
grid: true,
marks: [
Plot.dot(penguins, {
x: "culmen_length_mm",
y: "culmen_depth_mm",
fill: "species"
}),
Plot.line(
penguins,
Plot.regression({
x: "culmen_length_mm",
y: "culmen_depth_mm",
strokeDasharray: [1.5, 4],
strokeWidth: 1.5,
type,
bandwidth: param,
order: param
})
),
Plot.line(
penguins,
Plot.regression({
x: "culmen_length_mm",
y: "culmen_depth_mm",
stroke: "species",
type,
bandwidth: param,
order: param
})
)
]
})
Insert cell
Insert cell
Plot.plot({
grid: true,
facet: {
data: penguins,
x: "sex"
},
marks: [
Plot.frame(),
Plot.dot(penguins, {
x: "culmen_length_mm",
y: "culmen_depth_mm",
fill: "species"
}),
Plot.line(
penguins,
Plot.regression({
x: "culmen_length_mm",
y: "culmen_depth_mm",
strokeDasharray: [1.5, 4],
strokeWidth: 1.5
})
),
Plot.line(
penguins,
Plot.regression({
x: "culmen_length_mm",
y: "culmen_depth_mm",
stroke: "species"
})
)
],
width
})
Insert cell
Insert cell
Insert cell
function addRegression(Plot) {
Plot.regression = function ({ x, y, type, bandwidth, order, ...options }) {
type = String(type).toLowerCase();
const regressor =
type === "quad"
? reg.regressionQuad()
: type === "poly"
? reg.regressionPoly()
: type === "pow"
? reg.regressionPow()
: type === "exp"
? reg.regressionExp()
: type === "log"
? reg.regressionLog()
: type === "loess"
? reg.regressionLoess()
: reg.regressionLinear();
if (bandwidth && regressor.bandwidth) regressor.bandwidth(bandwidth);
if (order && regressor.order) regressor.order(order);

const z = options.z || options.stroke; // maybeZ
return Plot.transform(options, function (data, facets) {
const X = Plot.valueof(data, x);
const Y = Plot.valueof(data, y);
const Z = Plot.valueof(data, z);
regressor.x((i) => X[i]).y((i) => Y[i]);

const regFacets = [];
const points = [];
for (const facet of facets) {
const regFacet = [];
for (const I of Z ? d3.group(facet, (i) => Z[i]).values() : [facet]) {
const reg = regressor(I);
for (const d of reg) {
const j = points.push(d) - 1;
if (z) d[z] = Z[I[0]];
regFacet.push(j);
}
}
regFacets.push(regFacet);
}
return { data: points, facets: regFacets };
});
};
return Plot;
}
Insert cell
penguins = FileAttachment("penguins.csv").csv({typed: true})
Insert cell
reg = require("d3-regression@1")
Insert cell
Plot = addRegression(await require("@observablehq/plot@0.6"))
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.
Learn more