Notebook - Welcome to Notebook

Contact/Report Bugs
You can contact me at: bkenwright@xbdev.net












D3 Histogram data distribution script type text javascript src https d3js org d3 v7 min js script script data 1 2 3 8 7 4 9 8 7 3 4 5 2 1 9 7 8 4 0 2 3 8 7 6 min d3 min data max d3 max data domain min max var margin top 30 right 30 bottom 30 left 50 var width 460 margin left margin right var height 400 margin top margin bottom The number of bins var Nbin 10 var x d3 scaleLinear domain domain range 0 width var histogram d3 histogram domain x domain then the domain of the graphic thresholds Nbin then the numbers of bins And apply this function to data to get the bins var bins histogram data Add the svg element to the body and set the dimensions and margins of the graph var svg d3 select body append svg attr width width margin left margin right attr height height margin top margin bottom append g attr transform translate margin left margin top svg append g attr transform translate 0 height call d3 axisBottom x var y d3 scaleLinear range height 0 domain 0 d3 max bins function d return d length svg append g call d3 axisLeft y svg selectAll rect data bins enter append rect attr x 1 attr transform function d return translate x d x0 y d length attr width function d return x d x1 x d x0 1 attr height function d return height y d length style fill 69b3a2 console log ready script textarea style width 100 min height 50px id dataarea 10 10 10 9 10 10 10 10 7 10 10 7 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 0 10 10 10 10 10 10 10 9 10 7 10 10 10 10 10 10 10 10 10 10 10 10 10 10 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 5 10 10 10 10 7 10 10 10 10 10 10 textarea div style border 1px solid black padding 5px border radius 3px onclick createPlot Update div script type text javascript src https d3js org d3 v7 min js script script function createPlot d3 select svg remove let text document getElementById dataarea value text text replaceAll n data text split map entry parseInt entry filter entry typeof entry number min d3 min data max d3 max data domain min max var margin top 30 right 30 bottom 30 left 50 var width 460 margin left margin right var height 400 margin top margin bottom The number of bins var Nbin 10 var x d3 scaleLinear domain domain range 0 width var histogram d3 histogram domain x domain then the domain of the graphic thresholds Nbin then the numbers of bins And apply this function to data to get the bins var bins histogram data Add the svg element to the body and set the dimensions and margins of the graph var svg d3 select body append svg attr width width margin left margin right attr height height margin top margin bottom append g attr transform translate margin left margin top svg append g attr transform translate 0 height call d3 axisBottom x var y d3 scaleLinear range height 0 domain 0 d3 max bins function d return d length svg append g call d3 axisLeft y svg selectAll rect data bins enter append rect attr x 1 attr transform function d return translate x d x0 y d length attr width function d return x d x1 x d x0 1 attr height function d return height y d length style fill 69b3a2 createPlot console log ready script Slight extension of the previous version to include an update method which animates the transition to new data textarea style width 100 min height 50px id dataarea 10 10 10 9 10 10 10 10 7 10 10 7 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 0 10 10 10 10 10 10 10 9 10 7 1 1 1 2 2 2 2 1 textarea div style border 1px solid black padding 5px border radius 3px onclick createPlot load div div style border 1px solid black padding 5px border radius 3px onclick refresh random div script type text javascript src https d3js org d3 v7 min js script script let margin top 30 right 30 bottom 30 left 50 let margin top 0 right 0 bottom 0 left 0 let width 400 let height 400 function createPlot createPlot does a force clear recreate d3 select svg remove let text document getElementById dataarea value text text replaceAll n processes the data from the text area extracts numbers only let data text split map entry parseInt entry filter entry typeof entry number let min d3 min data let max d3 max data let domain min max The number of bins let Nbin 10 let x d3 scaleLinear domain domain range 0 width let histogram d3 histogram domain x domain then the domain of the graphic thresholds Nbin then the numbers of bins put the data into bins let bins histogram data Add the svg element to the body and set the dimensions and margins of the graph let svg d3 select body append svg attr width width margin left margin right attr height height margin top margin bottom append g attr transform translate margin left margin top attr class xaxis svg append g attr class xaxis2 attr transform translate 0 height call d3 axisBottom x let y d3 scaleLinear range height 0 domain 0 d3 max bins function d return d length svg append g attr class yaxis append g attr class yaxis2 call d3 axisLeft y svg append g attr class rects selectAll rect data bins enter append rect attr x 1 attr transform function d return translate x d x0 y d length attr width function d return x d x1 x d x0 1 attr height function d return height y d length style fill 69b3a2 end createPlot createPlot Adding refresh method to reload new data this version is for a transition type change function refresh console log refreshing let rn 8 Math round Math random 5 0 var values d3 range 50 map d3 randomUniform 1 rn let min d3 min values let max d3 max values let domain min max var x d3 scaleLinear domain domain range 0 width x ticks 20 var bins d3 histogram domain x domain then the domain of the graphic thresholds 10 then the numbers of bins values put data in bins var svg d3 select svg svg select xaxis2 remove svg select xaxis append g attr class xaxis2 attr transform translate 0 height call d3 axisBottom x d3 select yaxis2 remove let y d3 scaleLinear range height 0 domain 0 d3 max bins function d return d length d3 select yaxis append g attr class yaxis2 call d3 axisLeft y Reset y domain using new data var yMax d3 max bins function d return d length var yMin d3 min bins function d return d length var colorScale d3 scaleLinear domain yMin yMax range d3 rgb blue brighter d3 rgb red darker d3 select rects selectAll rect data bins join function enter enter append rect attr x 1 attr transform function d return translate x d x0 height attr width function d return x d x1 x d x0 attr height function d return 0 transition duration 1000 attr x 1 attr transform function d return translate x d x0 y d length attr width function d return x d x1 x d x0 attr height function d return height y d length style fill function d return colorScale d length function update update transition duration 1000 attr x 1 attr transform function d return translate x d x0 y d length attr width function d return x d x1 x d x0 attr height function d return height y d length style fill function d return colorScale d length function exit exit style fill 00ffff remove end refresh Calling refresh repeatedly every 5 seconds with random values setInterval function refresh values 5000 refresh console log ready script

a text split map entry parseInt entry filter entry typeof entry number let min d3 min data let max d3 max data let domain min max The number of bins let Nbin 10 let x d3 scaleLinear domain domain range 0 width let histogram d3 histogram domain x domain then the domain of the graphic thresholds Nbin then the numbers of bins put the data into bins let bins histogram data Add the svg element to the body and set the dimensions and margins of the graph let svg d3 select body append svg attr width width margin left margin right attr height height margin top margin bottom append g attr transform translate margin left margin top attr class xaxis svg append g attr class xaxis2 attr transform translate 0 height call d3 axisBottom x let y d3 scaleLinear range height 0 domain 0 d3 max bins function d return d length svg append g attr class yaxis append g attr class yaxis2 call d3 axisLeft y svg append g attr class rects selectAll rect data bins enter append rect attr x 1 attr transform function d return translate x d x0 y d length attr width function d return x d x1 x d x0 1 attr height function d return height y d length style fill 69b3a2 end createPlot createPlot Adding refresh method to reload new data this version is for a transition type change function refresh console log refreshing let rn 8 Math round Math random 5 0 var values d3 range 50 map d3 randomUniform 1 rn let min d3 min values let max d3 max values let domain min max var x d3 scaleLinear domain domain range 0 width x ticks 20 var bins d3 histogram domain x domain then the domain of the graphic thresholds 10 then the numbers of bins values put data in bins var svg d3 select svg svg select xaxis2 remove svg select xaxis append g attr class xaxis2 attr transform translate 0 height call d3 axisBottom x d3 select yaxis2 remove let y d3 scaleLinear range height 0 domain 0 d3 max bins function d return d length d3 select yaxis append g attr class yaxis2 call d3 axisLeft y Reset y domain using new data var yMax d3 max bins function d return d length var yMin d3 min bins function d return d length var colorScale d3 scaleLinear domain yMin yMax range d3 rgb blue brighter d3 rgb red darker d3 select rects selectAll rect data bins join function enter enter append rect attr x 1 attr transform function d return translate x d x0 height attr width function d return x d x1 x d x0 attr height function d return 0 transition duration 1000 attr x 1 attr transform function d return translate x d x0 y d length attr width function d return x d x1 x d x0 attr height function d return height y d length style fill function d return colorScale d length function update update transition duration 1000 attr x 1 attr transform function d return translate x d x0 y d length attr width function d return x d x1 x d x0 attr height function d return height y d length style fill function d return colorScale d length function exit exit style fill 00ffff remove end refresh Calling refresh repeatedly every 5 seconds with random values setInterval function refresh values 5000 refresh console log ready script

2dracecargame
3dplot
a4print
about
acecustomkeywords
acecustomkeywords2
acejs
acejs2
acejs3
aessecurity
angularjs
animbackgroundimage
aseformat
assert
asteroidsjs
backgrounds01
backgrounds02
backgrounds03
barnsleyfern
base26
base64
bib
binary
bodypix
bouncy
box2dweb
breakoutjs
browserversion
buslanes
busybutton
bvhreader
calendar
candycrush
candycrush2
canvas
canvas2
canvas3
canvasmandelbrot
canvasmandelbrot2
canvasnumbers
canvaszoom
capsule
car2dsimulationphysics
car2dsimulationphysics2
changingimages
chaosgame
chaosrandom
chaosrandomhisto
chaosrandomhisto2
chatgptusingopenai
chatgptusingopenai2
chatgptusingopenai3
checkboxtoggle
chinesetiles
classes
classfeatures
clipboardbutton
clonenode
codedropdown
codemirror
codemirror2
collada
colorpick
columnresizer
contextmenu
convnet
cookiebanner
countdown
countdown2
countdown3
crop
css3dbarchart
css3dbarchart2
css3dbook
css3dscene
csscube
csscube2
csscube3
csscubevideos
cssfilelist
csshas
csspulse
cssresizeaspect
cssspin
csszooming
csvtoarray
curleffect
customcheckbox
d3datamap
d3js
d3js10
d3js11
d3js2
d3js3
d3js4
d3js5
d3js6
d3js7
d3js8
d3js9
d3jsanimatedgrid
d3jsarctransition
d3jsarctransition2
d3jsaxis
d3jsaxischanging
d3jsbars
d3jsbrushing
d3jsbuslanes
d3jsbuslanes2
d3jscalendar
d3jscheat
d3jsclock
d3jscloudmap
d3jscogs
d3jscolors
d3jscovid
d3jscovid2
d3jscovid3
d3jsdashboard
d3jsdashboard2
d3jsdashboard3
d3jsdatakeyfunction
d3jsdensity
d3jsdragresizing
d3jsdragresizing2
d3jseach
d3jsease
d3jsevents
d3jsflower
d3jsforcegroups
d3jsforces
d3jsforces2
d3jsfractaltree
d3jsgeo
d3jsgroupbars
d3jsgroups
d3jsheatmap
d3jshex
d3jshierarchies
d3jshierarchies2
d3jshistogram
d3jshistogram2
d3jshistogram3
d3jshistogram4
d3jsinterpolate
d3jsjoin
d3jskmean
d3jskmean2
d3jsline
d3jsline2
d3jsline3
d3jsline4
d3jslinetransition
d3jslinetransition0
d3jslinetransition2
d3jsmaplocations
d3jsmaps
d3jsmaps2
d3jsmaps3
d3jsmisc
d3jsmisc2
d3jsmodule
d3jsmodulecolor
d3jsmultistyles
d3jsnobel
d3jsoverlappinggraphs
d3jspanel
d3jspie
d3jspieinterpolate
d3jssankey
d3jssankey2
d3jsscatter
d3jsshapes
d3jsslider
d3jsspending
d3jsspending2
d3jsspiralplot
d3jsspirograph
d3jssquare
d3jsstack
d3jsstackedbar
d3jsstackedbar2
d3jssunburst
d3jssunmoon
d3jssvglines
d3jssymbols
d3jstimelines
d3jsuk
d3jsvoronoi
d3scatterplot
d3timeline
d3timeline2
datalist
datamuse
date
dblclickhighlight
deviceorientation
dictionaryapi
dockermenu
doodlepad
downloadgif
dragdroplistitems
dragrotateresizediv
dragrotateresizediv2
dragrotateresizediv3
dragrotateresizediv4
dragrotateresizefontsize
dragselectbrush
drawlinesdiv
dropdown
dualquaternionimages
dynamicgrid
easefunctions
easeinterpolate3dplots
echart
echart2
echart3
encapsulation
epubviewer
errorstack
excalidraw
excalidraw2
excalidraw3
excalidraw5
expandable
faker
fetchplus
fileupload
fixedtopbar
fluiddynamics
fluiddynamics2
fluiddynamics3
fluidgaswatergl
fluidsmokedynamics
fluidsmokedynamics2
fonts
fonts2
footerbar
fractalmaze
fractalmaze2
fractalnoiseimage
fractals
fractals2
fractaltree
freesvg
fresnel
froggerjs
gantt
gifgiphyapi
gifhex
gltffromscratch
gradients
griditems
griditems2
griditems3
griditems4
gridworms
happyfont
heat
hexview
hexview2
highlight
icons
icons2
iframes
ik
imagetracertosvg
imgur
inputfile
invadersjs
ipynb
ipynb2
ipynb3
ipynb4
isbn13
isbn2
jpghex
jquery
jquery2
jqueryui
jqueryui2
jsdraganddrop
jsfire
jslint
jsobfuscate
jsraytracer
jstree
jstree2
jszip
jszipimages
jszipread
keyboardpiano
keyframes
l2dwidget
lcpsolverrigidbodies
lda
leftmenu
less
less2
lineargradientimage
linenumbers
loadimagefromfile
makepdf
maps
markdown
markdown2
markdown3
markdownalerts
markdownalerts2
markdownbookmarks
markovimage
markovpixelblocks
mathjax
matrices
matsandvects
mazegamejs
md2tex
metrotiles
metrowindows
milestones
minkowski2dboxes
misc
misc2
modules
myipdetails
mymodplotly
neataptic
networkstructures
networkstructures2
neural_network_drawshape
neural_network_plot_in_vs_out
neuralnetworkarrays
neuralnetworkblocks
neuralnetworksinewave
neuralnetworksnolibs
neuralnetworkvisualization
noiseflowfield
noiseflowfield2
noiseflowfield3
noiseflowfield4
noiseflowfield5
noiseflowfield6
number
obj
objtojson
openaiimages
opencv
opencv2
opencv3
opencv4
opencv5
outline
p2
p5fractalleaf
p5fractalshape
p5js
p5js2
p5js3
p5jsanimatedcover
p5mengercube
p5snowflakes
palindrome
panel
parallax
paste
paste2
pasteimgfromurl
pdfjs
pdfjs2
pdfkit
pdfkit2
pdfkit3
pdfkit4
pdfkit5
pdfkit6
pdfmake
pdfmake2
pdfmake3
pdfmake4
pdfmake5
pdfmake6
perlin
perlin2
perlin3
perspective
pexels
pixelgridpattern
playground
plotly
plotlynoise
plotlyranddist
plyloader
plyloader2
pngtxtencoder
pongjs
pptxgenjs
prettycode
prism
prn
problems
progress
pseudorandom
px2svg
python
quotes
racergame
random
randomcalcpie
randomgenerator
randomprofilepatterns
randomsinhistogram
randomstring
rating
rayambient
raymonte
raymonteprogressive
raymonteprogressive2
raymontewarmstart
reexpcross
reexpcross2
regex
regexbib
regexpfixbib
regexpmultiline
repeatwordsregexp
resizabletable
resizabletable2
revealjs
revealjs2
revealjsmulti
rigidbodyspheres2d
rigidbodyspheres3
rigidbodysphereslopetangent
ritalanguage
ritalanguage2
ritalanguage3
rotateimg
rough
rsapublicprivatekeys
rss
rss2
sankey
scrappingsvg
scrolltext
scrolltext2
scrollwidth
sdf2dcanvas
sdfboxinboxtwist
sdfchessbishop
sdfchessking
sdfchessknight
sdfchesspawn
sdfchessqueen
sdfchessrook
sdfhollowbox
setintervalexception
shareurl
shuffle
sidecomment
similarity
simplehighlighter
simpleplatformgamejs
sinecanvas
sliderpopout
slides
smileys
snowfall
snowman
sound
soundsignal
sphererayintersection
springs
sqljs
steganography
stereogram
stringmatching
sudoku
sudoku2
sudoku3
svg
svgchaos
svgdragresize
svgdragresize2
svgdragresize3
svgdragrotate
svgdrawing
svglines
svglines2
svglines3
svglines4
svglines5
svglinesmandelbrot
svgpathsdragrotate
svgpathsdragrotateresize
svgpie
svgpie2
svgpie3
svgpiepath
svgpiepath2
svgrandomfaces
symbols
synaptic
synaptic2
synonyms
tablerotatecells
tablerotatecells2
tablerotatecells3
tablerotatecells3b
tablerotatecells4
tables
tablezebra
tabularjs
tabularjs2
tabulatordownload
tagcanvas
tensorflowgan
tensorflowjs
tensorflowjsbasic
tensorflowjscnn
tensorflowjssinewave
tensorflowjssound
tensorflowmobilenet
tetrahedronfractal
tetrahedronfractalfolding
tetris
textarea
textareaauto
textareadiv
textareadiv2
textmaskimage
theirorthere
thesaurus
threejs
threejs2
threejs3
threejs4
threejsgltf
threejstokyo
tiles
toaster
tooltip
transition
transitionexpandabledropdown
treeview
treeview2
tricks
tshirt
tshirt2
tshirt3
turningpages
unsplash
urlblob
urlblob2
userdefinepoints
vector
videos
videos2
visualsort
vue
w2ui
w2uientertextdialog
webcam
webgl
webgl2
webgl3
webgl4
webgl5
webglbasic1
webglbasic2
webglcube
webglfov
webglfrustum
webgljson
webglleaves
webgllighting
webglorthographic
webglpoints1
webglpoints2
webglpoints3
webglsquare
webgltexture1
webgltexture2
webgltexture3
webgltransforms
webgltriangle
webgpu
webgpu10
webgpu11
webgpu12
webgpu13
webgpu14
webgpu15
webgpu16
webgpu17
webgpu2
webgpu3
webgpu4
webgpu5
webgpu6
webgpu7
webgpu8
webgpu9
webgpubars
webgpubuffers
webgpubuffers2
webgpucellnoise
webgpuclouds
webgpuclydescope
webgpucompute
webgpucubemap
webgpucubemap2
webgpudeferred
webgpudepth
webgpudof
webgpudrops
webgpuetha
webgpufire
webgpufractalcubes
webgpuglassrain
webgpugltf
webgpugltf2
webgpugrass
webgpugrid
webgpukernel
webgpukleinian
webgpulabupdates
webgpulighting
webgpumandelbrot
webgpumeta3d
webgpumetaballs
webgpumouse
webgpunoise
webgpunormalmapping
webgpuobj
webgpuparallax
webgpuparallax2
webgpuparallax3
webgpuparallaxshadow
webgpuparallaxshadow2
webgpupixel
webgpuquad
webgpuray1
webgpuraytracing
webgpuraytracing2
webgpushadowmaps
webgpushadowmaps2
webgpusierpinski2d
webgpusierpinski3d
webgpusinusoid
webgpussao
webgpustadiumobj
webgpuswirl
webgputestpipe3
webgputoon
webgputopology
webgputt
webgpuvolcloud
webgpuwater
webgpuwireframe
webgpuwireframe2
webpcanvas
webworkers
webxr
webxr2
wiggly
wikipedia