gpt4 book ai didi

javascript - D3.js 没有得到 y 轴值

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

我从这个 D3.js website example 中获取了一个简单的条形图可视化代码。 .

代码采用 tsv 文件并用条形图表示字母的频率。

在我的例子中,我使用的是一个 csv 文件,我试图代表一段时间内的人口。

这是我的 csv 格式:

年人口2005 2737502006 2737502007 2737502008 2740002009 2740002010 2740002011 2740002012 2740002013 2752312014 2749492015 276294

这是我当前正在执行的代码:

<!DOCTYPE html>
<meta charset="utf-8">
<style>

.bar {
fill: steelblue;
}

.bar:hover {
fill: brown;
}

.axis--x path {
display: none;
}

</style>
<svg width="960" height="500"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>

var svg = d3.select("svg"),
margin = {top: 20, right: 20, bottom: 30, left: 40},
width = +svg.attr("width") - margin.left - margin.right,
height = +svg.attr("height") - margin.top - margin.bottom;

var x = d3.scaleBand().rangeRound([0, width]).padding(0.1),
y = d3.scaleLinear().rangeRound([height, 0]);

var g = svg.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");

d3.csv("data.csv", function(d) {
d.population = +d.population;
d.year = +d.year;
return d;
}, function(error, data) {
if (error) throw error;

x.domain(data.map(function(d) { return d.year; }));
y.domain([0, d3.max(data, function(d) { return d.population; })]);

g.append("g")
.attr("class", "axis axis--x")
.attr("transform", "translate(0," + height + ")")
.call(d3.axisBottom(x));

g.append("g")
.attr("class", "axis axis--y")
.call(d3.axisLeft(y))
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", "0.71em")
.attr("text-anchor", "end")
.text("Population");

g.selectAll(".bar")
.data(data)
.enter().append("rect")
.attr("class", "bar")
.attr("x", function(d) { return x(d.year); })
.attr("y", function(d) { return y(d.population); })
.attr("width", x.bandwidth())
.attr("height", function(d) { return height - y(d.population); });
});

</script>

注意:在尝试测试我是否得到正确的值时:

      x.domain(data.map(function(d) { console.log(d.year); }));
y.domain([0, d3.max(data, function(d) { console.log(d.population); })]);

我只会返回不同的人口数量,而不是每年的每个人口数量(即使每几年都有相同的值)。

因此,我得到的条形图未显示正确的人口值 enter image description here

谢谢。

最佳答案

您的代码实际上显示了正确的人口值。当数据从 0 缩放时,数据中的值非常接近。

如果像这样为 rect 定义 y 属性时在代码中放置 console.log 语句:

.attr("y", function(d) { console.log(d.population, y(d.population)); return y(d.population); })

您将获得以下值:

273750 4
274000 4
275231 2
274949 2
276294 0

最后一个数字显示矩形将在像素方面停止的位置,如您所见,minmax 人口规模之间只有四个像素的差异。所以有区别,但它很小。为了说明我的观点,您可以向 csv 添加另一个数据点:

2016,100000

我得到了这样的东西: enter image description here

所以你看到它正在工作。现在,如果您真的想看到差异,您需要将 y.domain 更改为:

  y.domain([d3.min(data, function(d) {return d.population; }), d3.max(data, function(d) {return d.population; })]);

它给你: enter image description here

数据的差异更加明显。但是现在您遇到的问题是人口值最低的数据点将没有条形图。这可以通过确定数据中的最低值并减去某个值来解决。然后将该值设置为域最小值,或者您可以自己硬编码一个值。

最后,您可能想增加左边距以获得完整的刻度值。

margin = {top: 20, right: 20, bottom: 30, left: 50}

关于javascript - D3.js 没有得到 y 轴值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42580924/

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