Published
Edited
Apr 13, 2021
1 fork
2 stars
Insert cell
Insert cell
Insert cell
Insert cell
viewof selected = navio(tweets, {
height: 300,
addAllAttribsIncludeObjects: true
})
Insert cell
Insert cell
vl
.markRect({ tooltip: true })
.encode(
vl
.x()
.fieldO("created_at")
.timeUnit("day"),
vl
.y()
.fieldO("created_at")
.timeUnit("hours")
.scale({ reverse: true }),
vl.color().count()
)
.data(selected)
.render()
Insert cell
vl
.markRect({ tooltip: true })
.encode(
vl
.x()
.fieldO("created_at")
.timeUnit("day"),
vl
.y()
.fieldO("created_at")
.timeUnit("hours")
.scale({ reverse: true }),
vl.color().mean("retweet_count")
)
.data(selected)
.render()
Insert cell
legend({ color })
Insert cell
svg = {
const svg = d3.create("svg").attr("viewBox", [0, 0, width, height]);

const g = svg
.append("g")
.attr("transform", `translate(${margin.left}, ${margin.top})`);

g.append("g")
.call(d3.axisBottom(x).tickFormat(dateFmt))
.attr("transform", `translate(0, ${height - margin.top - margin.bottom})`)
.call(axis =>
axis
.append("text")
.text(xAttr)
.style("fill", "black")
.attr("transform", `translate( ${x.range()[1]}, +30)`)
.style("text-anchor", "end")
)
.call(axis => axis.selectAll("line").remove())
.call(axis => axis.selectAll("path").remove());

g.append("g")
.call(d3.axisLeft(y))
.call(axis =>
axis
.append("text")
.text(yAttr)
.style("fill", "black")
.style("text-anchor", "middle")
.attr("y", -15)
)
.call(axis => axis.selectAll("line").remove())
.call(axis => axis.selectAll("path").remove());

g.selectAll(".cell")
.data(grouped)
.join("rect")
.attr("class", "cell")
.attr("x", d => x(d.day))
.attr("y", d => y(d.hour))
.attr("width", x.bandwidth())
.attr("height", y.bandwidth())
.attr("fill", d => color(d.value));

return svg.node();
}
Insert cell
dateFmt = d => "SMTWHFS"[d]
Insert cell
grouped = d3
.rollups(
selected,
v => d3.mean(v, d => d.retweet_count),
d => d.created_at.getDay(),
d => d.created_at.getHours() + 5
)
.map(([day, v]) => v.map(([hour, value]) => ({ day, hour, value })))
.flat()
Insert cell
iwidth = width - margin.left - margin.right
Insert cell
iheight = height - margin.top - margin.bottom
Insert cell
yAttr = "Hours"
Insert cell
xAttr = "Day of the Week"
Insert cell
color = d3
.scaleSequential(d3.interpolateBlues)
.domain(d3.extent(grouped, d => d.value))
Insert cell
x = d3
.scaleBand()
.domain(d3.range(7))
.range([0, y.bandwidth() * 7])
Insert cell
y = d3
.scaleBand()
.domain(d3.range(24))
.range([0, iheight])
Insert cell
margin = ({ left: 50, top: 30, right: 20, bottom: 50 })
Insert cell
height = 600
Insert cell
Insert cell
tweets = {
let tweets = [];

const text = await Files.text(file);
try {
// Twitter archive format starts with: `window.YTD.tweet.part0 = [ {`
tweets = JSON.parse(text.slice(25)).map(t => t.tweet);
} catch {
tweets = JSON.parse(text);
}

return tweets.map(t => {
t.retweet_count = +t.retweet_count;
t.favorite_count = +t.favorite_count;
t.created_at = new Date(t.created_at);
t.hour = t.created_at.getHours();
return t;
});
}
Insert cell
Insert cell
import { vl } from "@vega/vega-lite-api"
Insert cell
import {navio} from "@john-guerra/navio"
Insert cell
d3 = require("d3@6")
Insert cell
import { fileInput } from "@mbostock/file-input-with-initial-value"
Insert cell
import { legend } from "@d3/color-legend"
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