Published
Edited
Jan 29, 2020
Insert cell
md`# Probe Similarity cumulative distribution for probes in same AS`
Insert cell
probesFiltered = Object.assign({ prb_ids: psMeta.filter(prbFilterFn).map(p => p.id) });
Insert cell
sims = fetch(`https://8100.ripe.net/probes?limit=0`, {
method: 'POST',
headers: {'Content-Type': 'application/json'
},
mode: 'cors',
body: JSON.stringify(probesFiltered)
})
.then(res => res.json());
Insert cell
ss = sims.map(r => {
let facet = psMeta.find(m => m.id === r.id)[facetParm]
return r.result.map(res => {
return (
{ ...res, facet: facet })
})
});
Insert cell
psMeta = fetch("https://atlas.ripe.net/api/v2/probes/archive/?status=1").then(d => d.json()).then(d => d.results);
Insert cell
bb = ss.map(sim => vl
.markLine({interpolate: 'step-before', opacity: 0.3, strokeWidth: 0.8})
.data(sim)
.transform(
vl.groupby(["similarity","facet"]).aggregate(vl.count().as('Count')),
vl.window(vl.sum('Count').as('Cumulative_Sum')).sort(vl.field("similarity"))
)
.encode(
vl.y().fieldQ("similarity").title('Similarity (jaccard index)'),
vl.x().fieldQ('Cumulative_Sum').title('Cumulative Count of Probes'),
vl.color().fieldN('facet').title(facetParm)
)
);
Insert cell
vl.layer(bb).width(800).height(800).render()
Insert cell
prbFilterFn = p => p.asn_v4 === 6830
Insert cell
facetParm = 'country_code'
Insert cell
probesFiltered.prb_ids.length
Insert cell
import {vl} from '@vega/vega-lite-api'
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