{
const tempData = [
{ clase: "A", qualificaci_energia: "X", counts: 10 },
{ clase: "A", qualificaci_energia: "Y", counts: 5 },
{ clase: "B", qualificaci_energia: "X", counts: 7 },
{ clase: "B", qualificaci_energia: "Z", counts: 3 },
];
const parsedData = tempData;
const linksClaseCalif = d3.rollups(
parsedData,
v => d3.sum(v, d => d.counts),
d => d.clase,
d => d.qualificaci_energia
);
console.log("linksClaseCalif (after rollups):", linksClaseCalif);
const nodes = [];
const nameToIndex = new Map();
function getUniqueNodeName(baseName) {
let name = baseName;
let counter = 0;
while (nameToIndex.has(name)) {
counter++;
name = `${baseName}_${counter}`;
}
return name;
}
// Create a map to store the original name to unique name mapping
const originalToUniqueName = new Map();
for (const [clase, calificacionesMap] of linksClaseCalif) {
const uniqueClaseName = getUniqueNodeName(clase);
// Store the mapping
originalToUniqueName.set(clase, uniqueClaseName);
nameToIndex.set(uniqueClaseName, nodes.length);
nodes.push({ name: uniqueClaseName, category: "clase" });
for (const [calif, total] of calificacionesMap) {
const uniqueCalifName = getUniqueNodeName(calif);
//Store the mapping
originalToUniqueName.set(calif, uniqueCalifName);
nameToIndex.set(uniqueCalifName, nodes.length);
nodes.push({ name: uniqueCalifName, category: "qualificaci_energia" });
}
}
console.log("nodes (before Sankey):", nodes);
console.log("nameToIndex (before Sankey):", nameToIndex);
console.log("originalToUniqueName (before Sankey):", originalToUniqueName);
// ------------------------------------------------------------
// 3. LINK CREATION
// ------------------------------------------------------------
const sankeyLinks = [];
for (const [clase, calificacionesMap] of linksClaseCalif) {
// Use the mapping to get the unique name
const claseIndex = nameToIndex.get(originalToUniqueName.get(clase));
for (const [calif, total] of calificacionesMap) {
// Use the mapping to get the unique name
const califIndex = nameToIndex.get(originalToUniqueName.get(calif));
sankeyLinks.push({
source: claseIndex,
target: califIndex,
value: total
});
}
}
console.log("sankeyLinks (before Sankey):", sankeyLinks);
// ------------------------------------------------------------
// 3.5 VALUE CHECK AND FILTER
// ------------------------------------------------------------
let filteredSankeyLinks = sankeyLinks; //Initialize
const zeroValueLinks = sankeyLinks.filter(link => link.value <= 0);
if(zeroValueLinks.length > 0){
console.warn("Warning: Links with value <= 0 found:", zeroValueLinks);
filteredSankeyLinks = sankeyLinks.filter(link => link.value > 0); //Only reasign if necessary
console.log("sankeyLinks (After filter, before Sankey):", filteredSankeyLinks);
}
// ------------------------------------------------------------
// 4. SANKEY SETUP AND EXECUTION
// ------------------------------------------------------------
const width = 928;
const height = 600;
const format = d3.format(",.0f");
const nodeAlign = "sankeyLeft";
const linkColor = "source-target";
const svg = d3.create("svg")
.attr("width", width)
.attr("height", height)
.attr("viewBox", [0, 0, width, height])
.attr("style", "max-width: 100%; height: auto; font: 10px sans-serif;");
const sankey = d3.sankey()
.nodeId(d => d.name)
.nodeAlign(d3[nodeAlign])
.nodeWidth(15)
.nodePadding(10)
.extent([[1, 5], [width - 1, height - 5]])
//DEBUG
.nodeSort((a, b) => {
console.log("Comparing nodes:", a.name, b.name);
return a.name.localeCompare(b.name); // Example sort
})
.linkSort((a, b) => {
console.log("Comparing links (source, target, value):", a.source.name, a.target.name, a.value, "vs", b.source.name, b.target.name, b.value);
return a.value - b.value; // Sort by link value
});
const sankeyData = {
nodes: nodes.map(d => ({ ...d })),
links: filteredSankeyLinks.map(d => ({ ...d })) // Use filtered links
};
const { nodes: sankeyNodes, links: sankeyLinksOut } = sankey(sankeyData);
console.log("sankeyNodes (after Sankey):", sankeyNodes);
console.log("sankeyLinksOut (after Sankey):", sankeyLinksOut);
// Check for Invalid Indices AFTER Sankey
for (const link of sankeyLinksOut) {
if (link.source < 0 || link.source >= sankeyNodes.length ||
link.target < 0 || link.target >= sankeyNodes.length ||
typeof link.source !== 'number' || typeof link.target !== 'number') {
console.error("INVALID LINK INDEX FOUND:", link, "Nodes:", sankeyNodes); // CRITICAL ERROR
}
}
// ------------------------------------------------------------
// 5. DRAWING (no changes here)
// ------------------------------------------------------------
const color = d3.scaleOrdinal(d3.schemeCategory10);
const rect = svg.append("g")
.attr("stroke", "#000")
.selectAll("rect")
.data(sankeyNodes)
.join("rect")
.attr("x", d => d.x0)
.attr("y", d => d.y0)
.attr("height", d => d.y1 - d.y0)
.attr("width", d => d.x1 - d.x0)
.attr("fill", d => color(d.category))
.append("title")
.text(d => `${d.name}\n${format(d.value)} total`);
const link = svg.append("g")
.attr("fill", "none")
.attr("stroke-opacity", 0.5)
.selectAll("g")
.data(sankeyLinksOut)
.join("g")
.style("mix-blend-mode", "multiply");
if (linkColor === "source-target") {
link.append("linearGradient")
.attr("id", d => (d.uid = DOM.uid("link")).id)
.attr("gradientUnits", "userSpaceOnUse")
.attr("x1", d => d.source.x1)
.attr("x2", d => d.target.x0)
.selectAll("stop")
.data(d => [
{ offset: "0%", color: color(d.source.category) },
{ offset: "100%", color: color(d.target.category) }
])
.join("stop")
.attr("offset", d => d.offset)
.attr("stop-color", d => d.color);
}
link.append("path")
.attr("d", d3.sankeyLinkHorizontal())
.attr("stroke", d => linkColor === "source-target" ? d.uid.id : linkColor === 'source'? color(d.source.category) : linkColor === "target" ? color(d.target.category) : linkColor)
.attr("stroke-width", d => Math.max(1, d.width))
.append("title")
.text(d => `${d.source.name} → ${d.target.name}\n${format(d.value)} total`);
svg.append("g")
.selectAll("text")
.data(sankeyNodes)
.join("text")
.attr("x", d => d.x0 < width / 2 ? d.x1 + 6 : d.x0 - 6)
.attr("y", d => (d.y1 + d.y0) / 2)
.attr("dy", "0.35em")
.attr("text-anchor", d => d.x0 < width / 2 ? "start" : "end")
.text(d => d.name);
//FINAL CHECK
if (svg.node() === null || svg.node() === undefined) {
console.error("SVG node is null or undefined!");
}
return svg.node();
}