gpt4 book ai didi

javascript - 计算数据域

转载 作者:行者123 更新时间:2023-12-02 16:30:15 26 4
gpt4 key购买 nike

我正在读取文件列表 filestoplot.txt 并将它们加载到数组 (datasets[fileno])。这些二维数组在结构上相似,我想计算每列(所有组合数组)的最大值和最小值,以便我可以正确建立全局 d3 轴。但是,我的代码(如下所示)无法正确返回 gloablmaxgloablmin

var files=[];
var datasets=[],totalfiles;
var i,j,dset=1,olddset=0,maxscale=0;
var maxnecr=0;
var cols=8;
var maxvalues=[];
var globalmin=[];gloablmax=[];

//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function loadfilenames(){

d3.csv("./filestoplot.txt",
function(file){
files = file.map(function(d) { for (key in d) { fn=d[key]; } return fn; })
totalfiles=files.length;
for (i=0;i<totalfiles;i++){
datasets[i]=[];
loaddataset(i);
maxvalues[i]=[];
}
if (filesloaded==(totalfiles-1)) maxmin();
}
);
}
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function loaddataset(fileno){
d3.csv(files[fileno],function(a){
console.log("loading file "+filesloaded);filesloaded++;
datasets[fileno]=a.map(function(d1) {
return [
+d1["f1"] ,
+d1["f2"] ,
+d1["f3"] ,
+d1["f4"] ,
+d1["f5"] ,
+d1["f6"] ,
+d1["f3"]/(+d1["f3"] + +d1["f5"]),
+d1["f7"]
];
}
);
}
);
}
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function maxmin(){
for (j=0; j <cols; j++) {
globalmin[j]=Math.Min.apply(null,d3.extent(maxvalues,function(d){ return d[j][0]; }))
gloablmax[j]=Math.Max.apply(null,d3.extent(maxvalues,function(d){ return d[j][1]; }))
//d3.extent(maxvalues,function(d){ console.log(d[j]);});
}
}

//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

</script>

<body style="max-width:90%" onload="loadfilenames();">
<script>

function changedataset(el){
console.log(el.checked)
maxmin();
}
</script>
</body>

在 Chrome 控制台上,我可以看到 maxvalues 具有正确的数据,但是 maxmin 显示此错误:

“未捕获类型错误:无法读取未定义的属性“应用””

如果有任何指点,我将不胜感激。谢谢。

最佳答案

Apply仅使用两次,

Math.Min.apply
Math.Max.apply

如果 apply 是“未定义的属性”,则意味着 Math.Min 和/或 Math.Max 未定义。

看来你只是遇到了大小写问题,请尝试 Math.minMath.max (当然也可能还有其他问题,但这应该是TypeError 的来源)。

关于javascript - 计算数据域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28374365/

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