D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
andrewdblevins
Full window
Github gist
words TSNE
Built with
blockbuilder.org
<!DOCTYPE html> <head> <meta charset="utf-8"> <script src="https://d3js.org/d3.v4.min.js"></script> <style> body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; } div.tooltip { position: absolute; text-align: center; width: 60px; height: 14px; padding: 2px; font: 12px sans-serif; background: #eee; border: 0px; border-radius: 8px; pointer-events: none; } </style> </head> <body> <script> // set the dimensions and margins of the graph var margin = {top: 20, right: 20, bottom: 30, left: 50}, width = 960 - margin.left - margin.right, height = 500 - margin.top - margin.bottom; var x = d3.scaleLinear().range([0, width]); var y = d3.scaleLinear().range([height, 0]); 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 + ")"); var div = d3.select("body").append("div") .attr("class", "tooltip") .style("opacity", 0); d3.csv("words.csv", draw); function draw(error, data) { if (error) throw error; // Scale the range of the data x.domain(d3.extent(data, d => +d.x )); y.domain(d3.extent(data, d => +d.y )); // Add the scatterplot /*svg.selectAll("dot") .data(data) .enter().append("circle") .attr("r", 5) .attr("cx", function(d) { return x(d.x); }) .attr("cy", function(d) { return y(d.y); }) */ // Add the X Axis svg.append("g") .attr("transform", "translate(0," + height + ")") .call(d3.axisBottom(x)); // Add the Y Axis svg.append("g") .call(d3.axisLeft(y)); } </script> </body>
https://d3js.org/d3.v4.min.js