- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将基于 D3.js v3 的代码“转换”为 D3.js v4。
我不知道我必须在下面的代码中更改什么它不显示任何错误:
var data = d3.layout.histogram()
.bins(resolution)
.frequency(0)
(results);
我知道在 d3.js v4 中没有像 d3.layout.histogram()
这样的东西 - 我只在 API 中找到了 d3.histogram()
.但是如何更改第 2-4 行的“语法”以使其与 v4 一起使用?提前致谢。
最佳答案
根据 this article我们有以下 d3v3 和 d3v4 直方图布局之间的差异列表:
d3.layout.histogram
becomesd3.histogram
.bins
becomes.thresholds
d3.scale.linear
becomesd3.scaleLinear
d.x+d.dx
becomesd.x1
d.y
becomesd.length
d.dx
becomesd.x1-d.x0
来自 d3v4 changelog 的更详细解释:
The new d3.histogram API replaces d3.layout.histogram. Rather than exposing
bin.x
andbin.dx
on each returned bin, the histogram exposesbin.x0
andbin.x1
, guaranteeing thatbin.x0
is exactly equal tobin.x1
on the preceeding bin. The “frequency” and “probability” modes are no longer supported; each bin is simply an array of elements from the input data, sobin.length
is equal to D3 3.x’sbin.y
in frequency mode. To compute a probability distribution, divide the number of elements in each bin by the total number of elements.The
histogram.range
method has been renamedhistogram.domain
for consistency with scales. The histogram.bins method has been renamedhistogram.thresholds
, and no longer accepts an upper value:n
thresholds will producen + 1
bins. If you specify a desired number of bins rather than thresholds, d3.histogram now uses d3.ticks to compute nice bin thresholds. In addition to the default Sturges’ formula, D3 now implements the Freedman-Diaconis rule and Scott’s normal reference rule.
所以你应该这样重写提到的代码片段:
var data = d3.histogram()
.thresholds(resolution)
(results);
但是你还需要重写你的代码的其他部分,将:d.x+d.dx
替换为d.x1
,d.y
到 d.length
和 d.dx
到 d.x1-d.x0
。
如何使用 d3v4 创建直方图布局的示例请参见下面的隐藏代码段:
var data = [
79, 54, 74, 62, 85, 55, 88, 85, 51, 85, 54, 84, 78, 47, 83, 52, 62, 84, 52, 79, 51, 47, 78, 69, 74, 83, 55, 76, 78, 79, 73, 77, 66, 80, 74, 52, 48, 80, 59, 90, 80, 58, 84, 58, 73, 83, 64, 53,
82, 59, 75, 90, 54, 80, 54, 83, 71, 64, 77, 81, 59, 84, 48, 82, 60, 92, 78, 78, 65, 73, 82, 56, 79, 71, 62, 76, 60, 78, 76, 83, 75, 82, 70, 65, 73, 88, 76, 80, 48, 86, 60, 90, 50, 78, 63, 72,
84, 75, 51, 82, 62, 88, 49, 83, 81, 47, 84, 52, 86, 81, 75, 59, 89, 79, 59, 81, 50, 85, 59, 87, 53, 69, 77, 56, 88, 81, 45, 82, 55, 90, 45, 83, 56, 89, 46, 82, 51, 86, 53, 79, 81, 60, 82, 77,
76, 59, 80, 49, 96, 53, 77, 77, 65, 81, 71, 70, 81, 93, 53, 89, 45, 86, 58, 78, 66, 76, 63, 88, 52, 93, 49, 57, 77, 68, 81, 81, 73, 50, 85, 74, 55, 77, 83, 83, 51, 78, 84, 46, 83, 55, 81, 57,
76, 84, 77, 81, 87, 77, 51, 78, 60, 82, 91, 53, 78, 46, 77, 84, 49, 83, 71, 80, 49, 75, 64, 76, 53, 94, 55, 76, 50, 82, 54, 75, 78, 79, 78, 78, 70, 79, 70, 54, 86, 50, 90, 54, 54, 77, 79, 64,
75, 47, 86, 63, 85, 82, 57, 82, 67, 74, 54, 83, 73, 73, 88, 80, 71, 83, 56, 79, 78, 84, 58, 83, 43, 60, 75, 81, 46, 90, 46, 74
];
var width = 952;
var height = 476;
var x = d3.scaleLinear().domain([30, 110]).range([0, width]);
var bins = d3.histogram().domain(x.domain()).thresholds(x.ticks(30))(data);
var max = d3.max(bins, function(d) {
return d.y;
});
var y = d3.scaleLinear().domain([0, .1]).range([0, height]);
var yForHistogram = d3.scaleLinear()
.domain([0, d3.max(bins, function(d) {
return d.length;
})])
.range([height, 0]);
var vis = d3.select("body")
.append("svg")
.attr("width", width)
.attr("height", height);
var bars = vis.selectAll("g.bar")
.data(bins)
.enter().append("g")
.attr("class", "bar")
.attr("transform", function(d) {
return "translate(" + x(d.x0) + "," + yForHistogram(d.length) + ")";
});
bars.append("rect")
.attr("fill", "steelblue")
.attr("width", x(bins[0].x1) - x(bins[0].x0) - 1)
.attr("height", function(d) {
return height - yForHistogram(d.length);
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.12.0/d3.min.js"></script>
关于d3.js - d3.layout.histogram() 和属性在 v4 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47727746/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!