- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下使用最新 D3 版本的 D3 代码(工作示例 here),我正在尝试构建一个简单的堆积条形图。
const svg = d3.select("svg")
const padding = 30
const margins = {
left: 60,
right: 0,
bottom: 50,
top: 15
}
const svgDimensions = {
height: 434,
width: 734
}
const chartPerimeterDimensions = {
width: svgDimensions.width - margins.left - margins.right,
height: svgDimensions.height - margins.top - margins.bottom
}
const barChartData = [
{ age: 55, patient: 0.1, population: 0 },
{ age: 56, patient: 0.2, population: 0.1 },
{ age: 57, patient: 0.3, population: 0.1 },
{ age: 58, patient: 0.5, population: 0.2 },
{ age: 59, patient: 0.6, population: 0.3 },
{ age: 60, patient: 0.8, population: 0.4 },
{ age: 61, patient: 1, population: 0.5 },
{ age: 62, patient: 1.2, population: 0.6 },
{ age: 63, patient: 1.5, population: 0.7 },
{ age: 64, patient: 1.8, population: 0.8 },
{ age: 65, patient: 2.2, population: 1 },
{ age: 66, patient: 2.6, population: 1.2 },
{ age: 67, patient: 3.1, population: 1.4 },
{ age: 68, patient: 3.7, population: 1.7 },
{ age: 69, patient: 4.3, population: 2 },
{ age: 70, patient: 5, population: 2.4 },
{ age: 71, patient: 5.8, population: 2.8 },
{ age: 72, patient: 6.8, population: 3.2 },
{ age: 73, patient: 7.9, population: 3.7 },
{ age: 74, patient: 9.1, population: 4.4 },
{ age: 75, patient: 10.5, population: 5 },
{ age: 76, patient: 12.1, population: 5.9 },
{ age: 77, patient: 13.9, population: 6.8 },
{ age: 78, patient: 15.9, population: 7.9 },
{ age: 79, patient: 18.2, population: 9.2 },
{ age: 80, patient: 20.7, population: 10.6 },
{ age: 81, patient: 23.5, population: 12.2 },
{ age: 82, patient: 30.1, population: 14.2 },
{ age: 83, patient: 33.4, population: 16.4 },
{ age: 84, patient: 36.7, population: 18.9 },
{ age: 85, patient: 38, population: 21.8 } ]
const yMax = Math.max(barChartData[30].patient, barChartData[30].population)
const yMin = 0
const yScale = d3
.scaleLinear()
.domain([yMin, yMax + 10])
.range([chartPerimeterDimensions.height, 0])
// Establish x scale
const xSeries = barChartData.map(d => d.age);
const xScale = d3
.scaleBand()
.range([0, chartPerimeterDimensions.width])
.padding(0.1);
xScale
.domain(xSeries)
.paddingOuter(padding / xScale.step());
const keys = ["population", "patient"]
const colors = ["grey", "red"]
const colorScale = d3
.scaleOrdinal()
.domain(keys)
.range(colors)
const xAxis = d3.axisBottom(xScale).tickValues([55, 60, 65, 70, 75, 80, 85])
const yAxis = d3.axisLeft(yScale)
// Create the group to place our chart within
const chartGroup = svg
.append('g')
.attr('transform', `translate(${margins.left}, ${margins.top})`)
// Create D3 stack data
const values = d3
.stack()
.keys(keys)(barChartData)
// Add stacked bar chart to svg
chartGroup
.selectAll("g.bars")
.data(values)
.join("g")
.attr("fill", d => colorScale(d.key))
.attr('class', 'bars')
.selectAll("rect")
.data(d => {
return d
})
.join("rect")
.attr("x", d => xScale(d.data.age))
.attr("y", d => {
const result = yScale(d[1])
return result
})
.attr("height", d => {
const result = yScale(d[0]) - yScale(d[1])
return result
})
.attr("width", xScale.bandwidth())
.attr('class', 'bar')
/**
* Create Y-Axis
*/
svg
.append('g')
.attr('transform', `translate(${margins.left}, ${margins.top})`)
.call(yAxis)
/**
* Create X-Axis
*/
svg
.append('g')
.attr('transform', `translate(${margins.left}, ${svgDimensions.height - margins.bottom})`)
.call(xAxis)
我意识到人口栏是完美的,但是患者栏很长并且溢出到图表顶部,尽管该数据集中的最大值为 38。我想知道这是否是一个问题:
有什么想法吗?
编辑:我意识到我可能为此数据集使用了错误类型的图表。分组条形图可能是更好的选择,因为我试图显示类别(即年龄)之间的离散数字比较。
最佳答案
您有一个堆积条形图。因此,获取两个变量中的最大值...
const yMax = Math.max(barChartData[30].patient, barChartData[30].population)
... 不是设置上域的正确方法。最重要的是,您不应该相信最后一个对象具有最大值。
话虽如此,您可以使用堆叠数据本身获得最大值:
const yMax = d3.max(values[values.length - 1], function(d){
return d[1];
});
这是结果代码:
const svg = d3.select("svg")
const padding = 30
const margins = {
left: 60,
right: 0,
bottom: 50,
top: 15
}
const svgDimensions = {
height: 434,
width: 734
}
const chartPerimeterDimensions = {
width: svgDimensions.width - margins.left - margins.right,
height: svgDimensions.height - margins.top - margins.bottom
}
const barChartData = [{
age: 55,
patient: 0.1,
population: 0
},
{
age: 56,
patient: 0.2,
population: 0.1
},
{
age: 57,
patient: 0.3,
population: 0.1
},
{
age: 58,
patient: 0.5,
population: 0.2
},
{
age: 59,
patient: 0.6,
population: 0.3
},
{
age: 60,
patient: 0.8,
population: 0.4
},
{
age: 61,
patient: 1,
population: 0.5
},
{
age: 62,
patient: 1.2,
population: 0.6
},
{
age: 63,
patient: 1.5,
population: 0.7
},
{
age: 64,
patient: 1.8,
population: 0.8
},
{
age: 65,
patient: 2.2,
population: 1
},
{
age: 66,
patient: 2.6,
population: 1.2
},
{
age: 67,
patient: 3.1,
population: 1.4
},
{
age: 68,
patient: 3.7,
population: 1.7
},
{
age: 69,
patient: 4.3,
population: 2
},
{
age: 70,
patient: 5,
population: 2.4
},
{
age: 71,
patient: 5.8,
population: 2.8
},
{
age: 72,
patient: 6.8,
population: 3.2
},
{
age: 73,
patient: 7.9,
population: 3.7
},
{
age: 74,
patient: 9.1,
population: 4.4
},
{
age: 75,
patient: 10.5,
population: 5
},
{
age: 76,
patient: 12.1,
population: 5.9
},
{
age: 77,
patient: 13.9,
population: 6.8
},
{
age: 78,
patient: 15.9,
population: 7.9
},
{
age: 79,
patient: 18.2,
population: 9.2
},
{
age: 80,
patient: 20.7,
population: 10.6
},
{
age: 81,
patient: 23.5,
population: 12.2
},
{
age: 82,
patient: 30.1,
population: 14.2
},
{
age: 83,
patient: 33.4,
population: 16.4
},
{
age: 84,
patient: 36.7,
population: 18.9
},
{
age: 85,
patient: 38,
population: 21.8
}
]
const yMin = 0
// Establish x scale
const xSeries = barChartData.map(d => d.age);
const xScale = d3
.scaleBand()
.range([0, chartPerimeterDimensions.width])
.padding(0.1);
xScale
.domain(xSeries)
.paddingOuter(padding / xScale.step());
const keys = ["population", "patient"]
const colors = ["grey", "red"]
const colorScale = d3
.scaleOrdinal()
.domain(keys)
.range(colors)
const xAxis = d3.axisBottom(xScale).tickValues([55, 60, 65, 70, 75, 80, 85])
// Create the group to place our chart within
const chartGroup = svg
.append('g')
.attr('transform', `translate(${margins.left}, ${margins.top})`)
// Create D3 stack data
const values = d3
.stack()
.keys(keys)(barChartData);
const yMax = d3.max(values[values.length - 1], function(d) {
return d[1];
});
const yScale = d3
.scaleLinear()
.domain([yMin, yMax + 10])
.range([chartPerimeterDimensions.height, 0])
const yAxis = d3.axisLeft(yScale)
// Add stacked bar chart to svg
chartGroup
.selectAll("g.bars")
.data(values)
.join("g")
.attr("fill", d => colorScale(d.key))
.attr('class', 'bars')
.selectAll("rect")
.data(d => {
return d
})
.join("rect")
.attr("x", d => xScale(d.data.age))
.attr("y", d => {
const result = yScale(d[1])
return result
})
.attr("height", d => {
const result = yScale(d[0]) - yScale(d[1])
return result
})
.attr("width", xScale.bandwidth())
.attr('class', 'bar')
/**
* Create Y-Axis
*/
svg
.append('g')
.attr('transform', `translate(${margins.left}, ${margins.top})`)
.call(yAxis)
/**
* Create X-Axis
*/
svg
.append('g')
.attr('transform', `translate(${margins.left}, ${svgDimensions.height - margins.bottom})`)
.call(xAxis)
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.9.7/d3.min.js"></script>
<svg height="434" width="734"></svg>
关于javascript - 堆叠条形图比例不一致问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57172625/
我想在我的 android 应用程序中实现一个反馈/评级图表。(就像当你打开 google play 并检查应用程序的反馈时,有一个来自投票它的用户的彩色图表)任何人都可以帮助我如何开始那个?感谢您提
我正在尝试使用 LaTeX 制作条形图。到目前为止我一直不成功,所以任何人都可以帮助我,也许是最近项目的副本?如何使用 pstricks 制作条形图?我会很感激最简单的解决方案,因为我最近才开始使用
我有一个包含 6 个事件及其发生时间跨度的 csv 表。我的变量是开始日期、结束日期和事件 ID。我打算创建一个水平直方图/条形图可视化来显示时间范围,即某些类型的事件持续了多长时间。 X 轴应该有多
我想制作可以指定条形最小值的条形图(很像盒须图中的盒子)。条形图可以做到吗?我怀疑答案在 ggplot 中,但我找不到示例。 这是一些数据: X Jan F
我想使用以下数据来创建可视化: > dput(data) structure(c(1264L, 2190L, 2601L, 1441L, 1129L, 2552L, 1820L, 306L,
我有一个包含正值和负值的数据框。我想显示一个显示两个条形的条形图,一个条形显示正值的百分比,另一个条形图显示负值的百分比。 dummy = pd.DataFrame({'A' : [-4, -3, -
我正在尝试在栏中插入自定义文本,我搜索了很多线程,但仍然没有得到任何解决方案。然后我想减小 y 轴的步长。我已附上我的代码。 jQuery( document ).ready(function() {
我正在使用 pandas 来创建条形图。这是一个例子: df=pd.DataFrame(np.random.rand(10, 4), columns=['a', 'b', 'c', 'd']) df.
我想在python中制作一个分类图来表示几个变量的范围。我想也许我会使用条形图并为条形设置范围。这是我的条形图 import matplotlib.pyplot as plt import numpy
我有一个显示 3 个条形的堆叠百分比条形图。 JSFiddle:https://jsfiddle.net/Lr0bszj6/ 由于某种原因,条形之间有很多空间并且没有与标签对齐(只有中间一个)。 设置
我正在尝试使用 aChartEngine 将 GPS 数据(正在查看或正在使用的卫星)显示为条形图,但我没有在此 View 中显示任何数据。这是我的代码,所以你能告诉我我犯了什么错误吗? public
我正在使用 this chart implementation . 但是,它分散了我的数据,而不是相互堆叠。 我想在 1970 年堆叠我的第一个数组,在 1975 年堆叠第二个数组。换句话说,我希望有
我正在尝试用不同颜色为条形图中的各个条形着色,比如蓝色表示正,红色表示负。我在互联网上找不到任何有用的东西。我在下面的代码中发现每个条形图都根据第一个条形图的值着色,而不是为每个条形图单独设置颜色:
我刚刚转移到 pandas 0.20/matplotlib 2.0 python 3.6。 (共构成以下版本)。我用 pandas 来绘制条形图,因为 matplotlib 的级别总是太低。着色列的行
我正在尝试制作一个图,其中 x 轴是时间,y 轴是一个条形图,其中的条形图覆盖特定时间段,如下所示: ______________
我有一些非常基本的代码,它可以正常工作,除了所有内容都与顶部对齐...理想情况下,条形图应与底部对齐。我想我可以使用固定定位,因为尺寸是 50px x 50px 的平方,但我更喜欢“固定”少一点的东西
这是我用来 Dim ejex As String, ejey As String Dim graficos As String Worksheets("Sheet1").Activate ejex =
我有一个生成如下条形图的 gnuplot 脚本: 输入数据位于具有多列的文件中,每一列最终都构成图表中的一个集群(示例中显示了 2 个集群)。每个文件都构成图表中的一个条形(示例中有 9 个)。每个文
我正在为我的数据 movies 使用库 ggplot2movies 请记住,我指的是 mpaa 评级和用户评级,这是两个不同的事物。如果您不想加载 ggplot2movies 库,这里是相关数据的示例
有没有一种简单的方法可以使用Pandas DataFrame.plot(kind='bar')方法按列名指定条形颜色? 我有一个脚本,可以从目录中的几个不同数据文件生成多个DataFrame。例如,它
我是一名优秀的程序员,十分优秀!