🇦🇹 Statistics on the Internet
IP Addresses
Dataset: at_allocated_routed.csv
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"description": "IPv4 AT",
"width": "container",
"height": 200,
"data": {
"url": "/assets/datasets/at_allocated_routed.csv",
"format": {"type": "csv"}
},
"tooltip": {
"theme": "custom"
},
"layer": [
{
"mark": {"type": "line", "strokeWidth": 2},
"encoding": {
"x": {
"field": "Date",
"type": "temporal",
"title": "Year",
"axis": {
"titleFontSize": 24, "labelFontSize": 16,
"format": "%Y",
"labelAngle": -45
}
},
"y": {
"field": "Value",
"type": "quantitative",
"title": "IP Addresses",
"axis": {
"titleFontSize": 20, "labelFontSize": 16,
"format": "~s"
}
},
"color": {
"field": "Category",
"type": "nominal",
"title": null,
"legend": {
"titleFontSize": 20, "labelFontSize": 16,
"orient": "bottom",
"symbolSize": 100
}
}
}
},
{
"transform": [{"pivot": "Category", "value": "Value", "groupby": ["Date"]}],
"mark": "rule",
"encoding": {
"x": {"field": "Date", "type": "temporal"},
"opacity": {
"condition": {"value": 0.3, "param": "hover", "empty": false},
"value": 0
},
"tooltip": [
{"field": "Date", "type": "temporal", "title": "Date"},
{"field": "allocated_assigned", "type": "quantitative", "title": "Allocated+Assigned","format": "~s"},
{"field": "routed", "type": "quantitative", "title": "Routed","format": "~s"}
]
},
"params": [{
"name": "hover",
"select": {
"type": "point",
"fields": ["Date"],
"nearest": true,
"on": "pointerover",
"clear": "pointerout"
}
}]
}
]
}