Public
Edited
Apr 4, 2024
Insert cell
Insert cell
NetflixViewingHistory@1.csv
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
regex = /: Temporada \d+.*$|: Episodio \d*.*?$/gm
Insert cell
data = netflixviewinghistory1.map(d=>{
d.Title2 = d.Title.replace(regex, "")
return d
})
Insert cell
"Belleza verdadera: True Beauty: Episodio 11".replace(regex, "")
Insert cell
d3.group(data, d => d.Title2)
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more