Public
Edited
Mar 4, 2023
Insert cell
Insert cell
Insert cell
plt=Plot.plot({
marks: [
Plot.ruleY([0]),
Plot.lineY(aapl, {x: "Date", y: "Close"})
]
})
Insert cell
{
// Plot.plot return the svg element,
//after plot is shown, get the class by ".className.baseVal"
let svg=d3.select("."+plt.className.baseVal)
svg.append('text').attr('x',300).attr('y',30).text('welcome')
}
Insert cell
Insert cell
Insert cell
P5 = require('https://unpkg.com/p5@0.6.0/lib/p5.js')
Insert cell
p5plot=p5(s => {
let i=100;
let width=400;
s.setup = function() {
s.createCanvas(width, 320);
s.fill('#DC3F74');
s.arc(75, 75, 50, 50, 0, Math.PI*2);
d3_draw.apply(this)
};
s.draw=()=>{
s.text(new Date(),10,10)
//draw is called repeatly,and will erase the content.
//use noloop() to stop
s.noloop()

}
s.mousePressed = s.mouseDragged = function() {
s.circle(s.mouseX, s.mouseY, 20 * 2);
};
})
Insert cell
function d3_draw(){

//sketch object has canvas property.
const canvas =this.canvas
const ctx = canvas.getContext('2d')
ctx.strokeRect(50, 50, 50, 50);
return canvas
}
Insert cell
Insert cell
p5plot.children[0].id
Insert cell
Insert cell
Insert cell
btn=p5(s => {
let width=600,height=400
s.setup = function() {
s.createCanvas(width, height);
s.fill('#DC3F74');
let button=s.createButton('press')
button.mousePressed(drawPoints)
};
function drawPoints() {
s.fill('#DC3F74');
let margin={left:30,right:30,top:30,bottom:30}
let data=[{x:1,y:8},{x:2,y:3},{x:3,y:2},{x:4,y:6},{x:5,y:7}]
let X=d3.scaleLinear().domain(d3.extent(data,d=>d.x)).range([0,width*0.9/2])
let Y=d3.scaleLinear().domain(d3.extent(data,d=>d.y)).range([height*0.9/2,0])
data.forEach(d=>{
s.rect(margin.left+X(d.x),margin.top+Y(d.y),30,height/2-Y(d.y))
s.text(d.y,margin.left+X(d.x)+10,margin.top+Y(d.y)-10)
})
}
})
Insert cell
d3.range(1000).fo
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