gpt4 book ai didi

javascript - 如何以 CSV 格式导出特定列?

转载 作者:行者123 更新时间:2023-11-30 11:57:20 25 4
gpt4 key购买 nike

我有 data.csv 文件:

Q,W,E,R,T,Y
A,S,D,F,G,H

要加载此文件,我使用此代码:

d3.text("data.csv", function(data) {
parsedCSV = d3.csv.parseRows(data);
// Some data manipulations...
// How to export 2nd & 4th column in CSV format?
}

如何从 CSV fromat 中的 parsedCSV 对象导出第二列和第四列?

最佳答案

可能最简单的方法是提供一个访问器函数作为 d3.csv.parseRows() 的第二个参数:

var columns;

d3.text("data.csv", function(data) {
columns = d3.csv.parseRows(csv, function(row) {
return [row[1], row[3]];
});
};

来自docs :

This function is invoked for each row in the CSV file, being passed the current row and index as two arguments. The return value of the function replaces the element in the returned array of rows;

关于javascript - 如何以 CSV 格式导出特定列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37564791/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com