gpt4 book ai didi

javascript - D3条形图不解析csv

转载 作者:行者123 更新时间:2023-12-02 17:00:21 25 4
gpt4 key购买 nike

我正在尝试使用从 CSV 加载的数据构建一个基本的响应式条形图。我的图表未读取 CSV,并给出 NaN。 Here's a screenshot of what my chart looks like.这是我当前的代码:

  <script type="text/javascript">
var url = "data/data.csv",
margin = {top: 30, right: 10, bottom: 30, left: 10},
width = parseInt(d3.select('#chart').style('width'), 10),
width = width - margin.left - margin.right,
height = 200, // placeholder
barHeight = 20,
spacing = 5,
total = d3.format('n');

// scales and axes
var x = d3.scale.linear()
.range([0, width])
.domain([0, 4000]); // hard-coding this because I know the data

var y = d3.scale.ordinal();

var xAxis = d3.svg.axis()
.scale(x)
.ticks(3);

// create the chart
var chart = d3.select('#chart').append('svg')
.style('width', (width + margin.left + margin.right) + 'px')
.append('g')
.attr('transform', 'translate(' + [margin.left, margin.top] + ')');

d3.csv(url).row(function(d) {
d.total = +d.total;
d.name = +d.name;

return d;
}).get(function(err, data) {
// sort
data = _.sortBy(data, 'total').reverse();

// set y domain
y.domain(d3.range(data.length))
.rangeBands([0, data.length * barHeight]);

// set height based on data
height = y.rangeExtent()[1];
d3.select(chart.node().parentNode)
.style('height', (height + margin.top + margin.bottom) + 'px')

// render the chart

// add top and bottom axes
chart.append('g')
.attr('class', 'x axis top')
.call(xAxis.orient('top'));

chart.append('g')
.attr('class', 'x axis bottom')
.attr('transform', 'translate(0,' + height + ')')
.call(xAxis.orient('bottom'));

var bars = chart.selectAll('.bar')
.data(data)
.enter().append('g')
.attr('class', 'bar')
.attr('transform', function(d, i) { return 'translate(0,' + y(i) + ')'; });

bars.append('rect')
.attr('class', 'background')
.attr('height', y.rangeBand())
.attr('width', width);

bars.append('rect')
.attr('class', 'total')
.attr('height', y.rangeBand())
.attr('width', function(d) { return x(d.total); })

bars.append('text')
.text(function(d) { return d.name; })
.attr('class', 'name')
.attr('y', y.rangeBand() - 5)
.attr('x', spacing);


bars.append('line')
.attr('class', 'median')
.attr('x1', x(median))
.attr('x2', x(median))
.attr('y1', 1)
.attr('y2', y.rangeBand() - 1);
});

// resize
d3.select(window).on('resize', resize);

function resize() {
// update width
width = parseInt(d3.select('#chart').style('width'), 10);
width = width - margin.left - margin.right;

// resize the chart
x.range([0, width]);
d3.select(chart.node().parentNode)
.style('height', (y.rangeExtent()[1] + margin.top + margin.bottom) + 'px')
.style('width', (width + margin.left + margin.right) + 'px');

chart.selectAll('rect.background')
.attr('width', width);

chart.selectAll('rect.total')
.attr('width', function(d) { return x(d.total); });

// update axes
chart.select('.x.axis.top').call(xAxis.orient('top'));
chart.select('.x.axis.bottom').call(xAxis.orient('bottom'));

}

// highlight code blocks
hljs.initHighlighting();

</script>

这是数据:

name, total
Brian, 1514
Frankie, 1439
Jeffery, 1615
Jerry, 685
Kenneth, 3233
Michael, 116
Roy, 817
Timothy, 2184

最佳答案

我发现您的代码和数据存在一些问题:

对于数据问题,您可以通过删除空格来清理行,例如:

name,total
Brian,1514
Frankie,1439
Jeffery,1615
Jerry,685
Kenneth,3233
Michael,116
Roy,817
Timothy,2184

或者您可以使用 [] 符号在代码中引用它们,例如:

d[' total'] = +d[' total'];

d3 正在为每条记录的属性名称添加前导空格。当您将属性引用为 d.total 时,它会返回 undefined 并且 undefined 被强制转换为 NaN。

例如。 data[0]['total'] 未定义,但 data[0]['total'] 正如您所期望的那样具有“1514”。从数据中删除空格是处理此问题的最简单方法。

在您的代码中,您正在执行以下操作:

d.name = +d.name;

这会将名称值转换为 NaN,因为它是一个以字母字符开头的文本字符串,因此 JavaScript 不知道如何将其强制转换为数字。

您还引用了一个名为median 的变量,该变量未在代码中声明。

我创建了一个 jsfiddle 来帮助:http://jsfiddle.net/BenLyall/eh1r6j2e/12/

注意:我已更改 d3.csv... 行以使用 DOM 中的元素来存储数据。

关于javascript - D3条形图不解析csv,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25778666/

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