- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在处理这个可视化:
http://tinyurl.com/cul7oyg
在#scatterplot div 上(向下滚动到圆圈下方)。我将 Y 缩放设置为对数并将第二个数字更改为 1:y = d3.scale.log().range([h - 60, 1])
域:
y.domain(d3.extent(data, function(d) {
console.log(+d.netdonations/+d.population)
console.log(y(+d.netdonations/+d.population))
return +d.netdonations/+d.population;
}));
只要数据为 0,我就会在日志中看到一堆“无穷大”值。负无穷大渐近线应该位于 x-0 Y 轴的左侧。
// set the stage
var margin = {
t : 30,
r : 20,
b : 20,
l : 40
}, w = 600 - margin.l - margin.r, h = 500 - margin.t - margin.b, x = d3.scale.linear().range([0, w]), y = d3.scale.log().range([h - 60, 1]),
//colors that will reflect geographical regions
color = d3.scale.category10();
var svg = d3.select("#scatterplot").append("svg").attr("width", w + margin.l + margin.r).attr("height", h + margin.t + margin.b);
scatterplot.svg = svg
// set axes, as well as details on their ticks
var xAxis = d3.svg.axis().scale(x).ticks(20).tickSubdivide(true).tickSize(6, 3, 0).orient("bottom");
var yAxis = d3.svg.axis().scale(y).ticks(20).tickSubdivide(true).tickSize(6, 3, 0).orient("left");
// group that will contain all of the plots
var groups = svg.append("g").attr("transform", "translate(" + margin.l + "," + margin.t + ")");
// array of the regions, used for the legend
var regions = getContinents;
//["Asia", "Europe", "Middle East", "N. America", "S. America", "Sub-Saharan Africa"]
// bring in the data, and do everything that is data-driven
//d3.csv("./data/trust-business.csv", function(data) {
// sort data alphabetically by region, so that the colors match with legend
/*data.sort(function(a, b) {
return d3.ascending(a.region, b.region);
})
console.log(data)*/
var x0 = Math.max(-d3.min(data, function(d) {
return d.gdppercap;
}), d3.max(data, function(d) {
return d.gdppercap;
}));
//x.domain([-100, 100]);
//y.domain([180, 0])
x.domain(d3.extent(data, function(d) {
return +d.gdppercap;
}));
y.domain(d3.extent(data, function(d) {
console.log(+d.netdonations/+d.population)
console.log(y(+d.netdonations/+d.population))
return +d.netdonations/+d.population;
}));
scatterplot.x = x
scatterplot.y = y
//console.log(d3.extent(data, function(d) {return +d.gdppercap;}));
//console.log(d3.extent(data, function(d) {return +d.netdonations/+d.population;}));
// style the circles, set their locations based on data
var circles = groups.selectAll("circle").data(data).enter().append("circle").attr("class", "circles").attr({
cx : function(d) {
return x(+d.gdppercap);
},
cy : function(d) {
console.log(+d.netdonations/+d.population)
console.log(y(+d.netdonations/+d.population))
return y(+d.netdonations/+d.population);
},
r : 8,
id : function(d) {
return d.name;
}
}).style("fill", function(d) {
return color(d.continent);
});
// what to do when we mouse over a bubble
var mouseOn = function() {
var circle = d3.select(this);
// transition to increase size/opacity of bubble
circle.transition().duration(800).style("opacity", 1).attr("r", 16).ease("elastic");
// append lines to bubbles that will be used to show the precise data points.
// translate their location based on margins
svg.append("g").attr("class", "guide").append("line").attr("x1", circle.attr("cx")).attr("x2", circle.attr("cx")).attr("y1", +circle.attr("cy") + 26).attr("y2", h - margin.t - margin.b).attr("transform", "translate(40,20)").style("stroke", circle.style("fill")).transition().delay(200).duration(400).styleTween("opacity", function() {
return d3.interpolate(0, 0.5);
});
svg.append("g").attr("class", "guide").append("line").attr("x1", +circle.attr("cx") - 16).attr("x2", 0).attr("y1", circle.attr("cy")).attr("y2", circle.attr("cy")).attr("transform", "translate(40,30)").style("stroke", circle.style("fill")).transition().delay(200).duration(400).styleTween("opacity", function() {
return d3.interpolate(0, 0.5);
});
// function to move mouseover item to front of SVG stage, in case
// another bubble overlaps it
d3.selection.prototype.moveToFront = function() {
return this.each(function() {
this.parentNode.appendChild(this);
});
};
// skip this functionality for IE9, which doesn't like it
//if (!$.browser.msie) {
if (navigator.appName !== 'ie') {
circle.moveToFront();
}
//select()
};
// what happens when we leave a bubble?
var mouseOff = function() {
var circle = d3.select(this);
// go back to original size and opacity
circle.transition().duration(800).style("opacity", 0.5).attr("r", 8).ease("elastic");
// fade out guide lines, then remove them
d3.selectAll(".guide").transition().duration(100).styleTween("opacity", function() {
return d3.interpolate(0.5, 0);
}).remove();
//mouseout
};
// run the mouseon/out functions
circles.on("mouseover", mouseOn);
circles.on("mouseout", mouseOff);
// tooltips (using jQuery plugin tipsy)
circles.append("title").text(function(d) {
return d.name;
});
$(".circles").tipsy({
gravity : 's'
});
// the legend color guide
var legend = svg.selectAll("rect").data(regions).enter().append("rect").attr({
x : function(d, i) {
return (40 + i * 80);
},
y : h,
width : 25,
height : 12
}).style("fill", function(d) {
return color(d);
});
// legend labels
svg.selectAll("text").data(regions).enter().append("text").attr({
x : function(d, i) {
return (40 + i * 80);
},
y : h + 24
}).text(function(d) {
return d;
});
// draw axes and axis labels
svg.append("g").attr("class", "x axis").attr("transform", "translate(" + margin.l + "," + (h - 60 + margin.t) + ")").call(xAxis);
svg.append("g").attr("class", "y axis").attr("transform", "translate(" + margin.l + "," + margin.t + ")").call(yAxis);
svg.append("text").attr("class", "x label").attr("text-anchor", "end").attr("x", w + 50).attr("y", h - margin.t - 5).text("Per Capita GDP");
svg.append("text").attr("class", "y label").attr("text-anchor", "end").attr("x", -20).attr("y", 45).attr("dy", ".75em").attr("transform", "rotate(-90)").text("Per Capita Net Donations");
//});
最佳答案
做这个
y = d3.scale.log().clamp(true).domain([min, max]).range([min, max]).nice();
为你工作????
编辑:它应该做的:
d3.scale.log().clamp(true).domain([1,10]).range([0,100]).nice()(0)
0
d3.scale.log().domain([1,10]).range([0,100]).nice()(0)
NaN
关于javascript - D3 对数缩放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16317532/
我想在 python 中找出一个整数的 log10,但我得到了一个错误,比如数学域错误 我的代码是这样的w=math.log10(q*q1)/math.log10(2) 其中 q1,q2 是整数 是的
舍入小数 在 NumPy 中,主要有五种方法来舍入小数: 截断 去除小数部分,并返回最接近零的浮点数。使用 trunc() 和 fix() 函数。 示例: import numpy as n
我有一个数值范围为 0 到 100 的 slider 。 我想将它们映射到 100 到 10,000,000 的范围内。 我在网上看到过一些函数,但它们都是用 C++ 编写的。我需要它在 Javasc
我想请用户输入一个整数(N),然后显示他/她输入的整数的 10 对数。我已经成功计算了 10 对数,但不知道如何像下面这样显示它: Write in an Integer: 455666 455666
我将 x 轴设置为对数刻度。最大值为10000,最小值为1。 GraphPane mypane = zedgraphcontrol.GraphPane; mypane.XAxis.Type = Axi
我正在尝试编写一个快速算法来计算 log gamma function 。目前我的实现看起来很幼稚,只是迭代了 1000 万次来计算 gamma 函数的对数(我还使用 numba 来优化代码)。 im
这个问题在这里已经有了答案: How to show minor tick labels on log-scale with Matplotlib (2 个答案) 关闭 7 年前。 将行 plt.y
抱歉标题不好 ;) 我正在尝试重新创建我在其他一些工作中遇到的 matlab 图,但我不太了解他们使用的比例。 y轴增量如下(从上往下[+ve y]): 0.9999,0.999,0.99,0.9,0
由于 1000 的以 10 为底的对数是 3,您可能期望 Math::log(1000, 10) 返回 3。相反,它返回 2.9999999999999996。 这是因为 Ruby 中的 float
我对对数 X 轴有疑问。阈值大于 0,x 的最小值为 1,并且所有 X 值都大于 0。并且仍然给我相同的错误 Can't plot zero or subzero values on a logari
我需要在我的应用程序中实现折线图,我想使用 MPAndroidChart。问题是 y 轴上的值将介于 1 和 1x10^-12 之间。这就是为什么我需要在该轴上的对数 View 。 有没有办法用那个库
我正在尝试按照 Logarithmic slider 中的示例进行操作. 这是我使用的代码: Timeline._MIN_PER_MINUTE = 1; Timeline._MIN_PER_HOUR
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve th
我尝试为对数 y 轴绘制条形图。不幸的是,如果我将 y 轴设置为对数,则不再有条形图。我该怎么做才能实现这一目标?是否可以在 bar-function 中设置引用点(默认似乎为零)? 我的代码是: i
所以我一直在努力掌握 Big Oh 的计算方法。我觉得我已经掌握了基础知识,但对看似非常简单的计算感到困惑。所以如果下面的计算有很大的 O(n log n)(我真的希望我至少做对了)改变循环的顺序对复
我知道二维绘图的 semilogx 和 semilogy。 SURF 和 MESH 有什么等价物吗? 最佳答案 如上述链接所述,要将所有三个轴设置为对数刻度,请使用 set(gca, 'XScale'
这看起来很简单,但我在用 Ruby 计算 log (Base 5) 时遇到了问题。 显然标准的 base-10 日志工作正常: >> value = Math::log(234504) => 12.3
这段代码是用 C 语言根据 pollard 的对数 rho 算法(来自 wiki)编写的。在此代码中,如果我输入 alpha=2、beta=5、N=1019,则必须返回 a=681、b=378、A=3
有了this question之后通过指向 an external site 的链接回答,我意识到我解决了一个问题,只是为了得到另一个问题:在对数刻度上,MESH 和 SURF 函数的 C=Z 参数不
我正在尝试解决 the SPOJ problem PGCD , 它询问最大公约数表中出现了多少个素数。 我想到的第一个想法是先通过筛分生成素数。 然后,对于每个素数 p,查看有多少对(a,b),其中
我是一名优秀的程序员,十分优秀!