gpt4 book ai didi

arrays - D3.js 未知的列数和行数

转载 作者:行者123 更新时间:2023-12-01 08:29:01 24 4
gpt4 key购买 nike

我目前正在创建图表(来自外部 csv 文件的数据),但我事先不知道 列数和行数 .您能否指出我在哪里可以找到有关此问题的一些帮助(或一些示例)的正确方向?

谢谢

最佳答案

d3.csv可以在这里帮助您:

d3.csv('myCSVFile.csv', function(data){

//the 'data' argument will be an array of objects, one object for each row so...

var numberOfRows = data.length, // we can easily get the number of rows (excluding the title row)

columns = Object.keys( data[0] ), // then taking the first row object and getting an array of the keys

numberOfCOlumns = columns.length; // allows us to get the number of columns

});

请注意,此方法假定电子表格的第一行(且仅第一行)是列标题。

关于arrays - D3.js 未知的列数和行数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25383703/

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