counts = {
let ctCount = new Set(mergedData.map(o => o.cell_iri)).size;
let asCount = new Set(mergedData.map(o => o.as_iri)).size;
let blockCount = new Set(mergedData.map(o => o.block_id)).size;
const p = document.createElement("p");
p.appendChild(document.createElement("b")).appendChild(document.createTextNode("SUMMARY:"));
p.appendChild(document.createElement("br"));
p.appendChild(document.createTextNode("Number of Blocks: "+blockCount));
p.appendChild(document.createElement("br"));
p.appendChild(document.createTextNode("Number of Unique ASs identified: "+asCount));
p.appendChild(document.createElement("br"));
p.appendChild(document.createTextNode("Number of Unique CTs identified: "+ctCount));
return p;
}