英文:
uncaught TypeError: reduceInitial is not a function
问题
我遇到了一个我无法理解的错误。看起来我忘记加载一个库,但我已经检查了所有可用的d3库,但我找不到哪个库有reduceInitial函数。
我使用:
d3 v3.5.17
dc v2.0.5
crossfilter v1.3.14
jquery v3.6.1
d3-color v1.4.1
d3-format v1.4.5
d3-interpolate v1.4.0
d3-scale v2.2.2
d3-scale.chromatic v1.5.0
d3-time v1.1.0
d3 v2.3.0
非常感谢您提前的帮助。
英文:
I have an error that I cannot understand. It looks like I forgot to load a library but I've gone through all the available d3 libraries I can't see which library has reduceInitial as a function.
I use:
d3 v3.5.17
dc v2.0.5
crossfilter v1.3.14
jquery v3.6.1
d3-color v1.4.1
d3-format v1.4.5
d3-interpolate v1.4.0
d3-scale v2.2.2
d3-scale.chromatic v1.5.0
d3-time v1.1.0
d3 v2.3.0
Many thanks in advance for your help
答案1
得分: -1
这是group.reduce()的第三个参数,它需要一个函数。
您可能忘记传递这个参数,所以它尝试将undefined
作为函数调用。
英文:
This is the third parameter to group.reduce() and it expects a function.
You probably neglected to pass this parameter, so it's trying to call undefined
as a function.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论