Public
Edited
Mar 7, 2024
4 stars
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Plot.plot({
width:800,
y: {grid:true, domain: [0,170]},
x: {domain: [0,250], label: "Day"},
color: {legend:true, domain: ["2014","2015","2016","2017"]},
marks: [
Plot.ruleY([0]),
//moving line
Plot.line(testData.filter(d=>d.row_num<=indexButton),
{x: "index_by_year", y: "Close", z: "year", stroke: "year"}),
//dot per quarter
Plot.dot(testData.filter(d=> d.row_num<=indexButton & d.is_quarter==='Y'),
{x: "index_by_year", y: "Close", z: "year", fill: "year", r:6}),
//dot tip with text
Plot.dot(testData.filter(d=>d.row_num==indexButton), {x: "index_by_year", y: "Close", z: "year", fill: "year", r:6}),
Plot.text(testData.filter(d=>d.row_num==indexButton),
{x: "index_by_year", y: "Close", z: "year", fill: "year", text: d=>d.Close.toFixed(2), dx:20, dy:-10})

]
})
Insert cell
stockData
select
Date
,Close
,date_part('year', Date)::char as year
,row_number() over (order by Date) as row_num
,row_number() over (partition by date_part('year', Date) order by Date) as index_by_year
,date_part('month',Date) as month_num
,case when row_number() over (partition by date_part('year', Date) order by Date) IN (60,120, 180,240) THEN 'Y' ELSE 'N' end is_quarter
from stockData
where date_part('year',Date)>=2014 and date_part('year',Date)<2018
order by Date
Insert cell
stockData = aapl
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
import {Scrubber} from "@mbostock/scrubber"
Insert cell
Insert cell
Insert cell
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