function getUntransform(transformName) {
const untransforms = {
Identity: (d) => d,
Log: Math.exp,
"Log base 10": (d) => Math.pow(10, d),
"Square root": (d) => d ** 2,
"Cube root": (d) => d ** 3,
Square: Math.sqrt,
Cube: Math.cbrt,
Reciprocal: (d) => 1 / d
};
return untransforms[transformName] || ((d) => d);
}