Project

General

Profile

Actions

Web tech » History » Revision 17

« Previous | Revision 17/29 (diff) | Next »
jun chen, 02/17/2025 06:23 PM


Web tech

How to visualize data:

D3 ref: https://observablehq.com/@d3/gallery , https://johan.github.io/d3/ex/
Plotly ref: https://plotly.com/javascript/


交互功能对比

功能 JavaScript/Plotly Python/Plotly JavaScript/d3
缩放/平移 ✔️ ✔️ ✔️
悬停显示数值 ✔️ ✔️ ✔️
数据点高亮 ✔️ ✔️ ✔️
导出为图片(PNG/JPEG) ✔️ ✔️ ✔️
动态更新数据 ✔️(需额外代码) ✔️
旧firefox支持 ❌(globalthis) ? ✔️

button

// 设置图表的尺寸和边距
const margin = {top: 20, right: 30, bottom: 30, left: 40},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;

// 设置SVG的尺寸
const svg = d3.select("#chart").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}));

// 设置比例尺
const x = d3.scaleLinear().range([0, width]);
const y = d3.scaleLinear().range([height, 0]);

// 定义折线生成器
const line = d3.line()
.x(d => x(d.index)) // 使用第一列(index)作为X轴
.y(d => y(d.observation)); // 使用观测值作为Y轴

// 初始化Y轴数据为第二列(observation1)
let currentY = "observation1";

// 读取CSV文件
d3.csv("data.csv").then(data => {
// 转换数据类型
data.forEach(d => {
d.index = +d.index; // 第一列转换为数值
d.observation1 = +d.observation1; // 第二列转换为数值
d.observation2 = +d.observation2; // 第三列转换为数值
});

// 设置比例尺的域
x.domain(d3.extent(data, d => d.index)); // X轴范围为第一列的最小值和最大值
y.domain([0, d3.max(data, d => Math.max(d.observation1, d.observation2))]); // Y轴范围为0到观测值的最大值

// 绘制初始折线图(使用observation1)
drawChart(data);

// 添加按钮点击事件
d3.select("#toggleButton").on("click", function() {
    // 切换Y轴数据
    currentY = currentY === "observation1" ? "observation2" : "observation1";
    // 更新按钮文本
    d3.select(this).text(currentY === "observation1" ? "Switch to Observation 2" : "Switch to Observation 1");
    // 重新绘制折线图
    drawChart(data);
});

});

// 绘制折线图的函数
function drawChart(data) {
// 移除旧的折线和点
svg.selectAll(".line").remove();
svg.selectAll(".dot").remove();

// 更新折线生成器的Y值
line.y(d => y(d[currentY]));

// 添加折线
svg.append("path")
    .datum(data)
    .attr("class", `line ${currentY === "observation1" ? "line1" : "line2"}`)
    .attr("d", line);

// 添加点
svg.selectAll(".dot")
    .data(data)
  .enter().append("circle")
    .attr("class", "dot")
    .attr("cx", d => x(d.index)) // 使用第一列(index)作为X轴
    .attr("cy", d => y(d[currentY])) // 使用当前观测值作为Y轴
    .attr("r", 5)
    .on("mouseover", function(event, d) {
        tooltip.transition()
            .duration(200)
            .style("opacity", .9);
        tooltip.html(`Index: ${d.index}<br>Observation: ${d[currentY]}<br>Label: ${d.label}`)
            .style("left", (event.pageX + 5) + "px")
            .style("top", (event.pageY - 28) + "px");
    })
    .on("mouseout", function(d) {
        tooltip.transition()
            .duration(500)
            .style("opacity", 0);
    });

// 添加X轴
svg.select(".x-axis").remove(); // 移除旧的X轴
svg.append("g")
    .attr("class", "x-axis")
    .attr("transform", `translate(0,${height})`)
    .call(d3.axisBottom(x));

// 添加Y轴
svg.select(".y-axis").remove(); // 移除旧的Y轴
svg.append("g")
    .attr("class", "y-axis")
    .call(d3.axisLeft(y));

}

// 添加提示工具
const tooltip = d3.select("body").append("div")
.attr("class", "tooltip")
.style("opacity", 0);

js d3 读入 csv 并绘制折线交互

show code...

js d3 内嵌数据显示折线

show code...

JavaScript + Plotly(纯前端实现)

show code...

使用步骤:

  1. 将CSV文件命名为 data.csv,格式如下:
    x,y
    1,5
    2,3
    3,7
    4,2
    5,8
    
  2. 将HTML文件和 data.csv 放在同一目录下,用浏览器打开HTML文件。
  3. 效果:支持缩放、悬停显示数值、拖拽平移等交互。

Python + Plotly(生成独立HTML文件)

特点:适合Python用户,自动化生成图表文件。

show code...

使用步骤:

  1. 安装依赖:
    pip install pandas plotly
    
  2. 运行代码后,生成 interactive_chart.html,用浏览器打开即可看到图表。

进阶方案(可选)

  1. 动态数据加载(JavaScript):

View details...

  • 用户可上传任意CSV文件,实时生成图表。
  1. 添加控件(Python + Dash):
    View details...

    • 运行后访问 http://localhost:8050,支持动态交互和按钮触发操作。

Updated by jun chen 4 months ago · 29 revisions