Published
Edited
Apr 22, 2021
Insert cell
md`# Scatter Plot of network data for SWaT Dataset`
Insert cell
ipaddress_text = FileAttachment("ipdict.json").text()
Insert cell
ipaddress_map = JSON.parse(ipaddress_text)
Insert cell
data = FileAttachment("BytesPortAddrMal.csv").csv({typed: true})
Insert cell
html`<style>
.bubbles {
stroke-width: 2px;
stroke: white;
}
.bubbles:hover {
stroke: black;
}
</style>`
Insert cell
margin = ({top: 10, right: 20, bottom: 30, left: 50})
Insert cell
width = 1000 - margin.left - margin.right
Insert cell
height = 680 - margin.top - margin.bottom;
Insert cell
portRange = d3.extent(data, d => d.Dport)
Insert cell
addrRange = d3.extent(data, d => d.DstAddr);
Insert cell
totbytesRange = d3.extent(data, d => d.CumBytes);
Insert cell
percentRange = d3.extent(data, d => d.Percent);
Insert cell
{
const SVG = d3.select(DOM.svg(width, height));
SVG.append("g")
.attr("transform","translate(" + margin.left + "," + margin.top + ")");

var x = d3.scaleLinear()
.domain(addrRange)
.range([ 0, width ]);

SVG.append("g")
.attr("transform", "translate(0," + height + ")")
.call(d3.axisBottom(x));

// Add Y axis
var y = d3.scaleLinear()
.domain(portRange)
.range([ height, 0]);

SVG.append("g")
.call(d3.axisLeft(y));

// Add a scale for bubble size
var z = d3.scaleLinear()
.domain(totbytesRange)
.range([ 2, 40]);

var color = d3.scaleLinear()
.domain(percentRange)
.range(['blue', 'red']);
var tooltip = d3.select("body")
.append("div")
.style("opacity", 0)
.attr("class", "tooltip")
.style("background-color", "black")
.style("border-radius", "5px")
.style("padding", "10px")
.style("color", "white")
.style("position", "absolute");

var showTooltip = function(event, d) {
tooltip
.transition()
.duration(200)
tooltip
.style("opacity", 1)
.html("Port: " + String(d.Dport) +"<br />" +
"Dst IP: " + String(ipaddress_map[d.DstAddr])
)
.style("left", (event.pageX +15) + "px")
.style("top", (event.pageY-15) + "px")
}
var moveTooltip = function(event, d) {
tooltip
.style("left", (event.pageX +15) + "px")
.style("top", (event.pageY-15) + "px")
}
var hideTooltip = function(event, d) {
tooltip
.transition()
.duration(200)
.style("opacity", 0)
}

SVG.append('g')
.selectAll("dot")
.data(data)
.enter()
.append("circle")
.attr("class", "bubbles")
.attr("cx", function (d) { return x(d.DstAddr); } )
.attr("cy", function (d) { return y(d.Dport); } )
.attr("r", function (d) { return z(d.CumBytes); } )
.style("fill", function (d) { return color(d.Percent)})
.style("opacity", "0.7")
.on("mouseover", showTooltip)
.on("mousemove", moveTooltip)
.on("mouseleave", hideTooltip)
return SVG.node();
}
Insert cell
md`## Appendix`
Insert cell
d3 = require("d3@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