会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
valentine
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
9
下一页
2015年1月28日
d3.js学习13
摘要: 表格线先定义svg环境var height = 500, width = 500, margin = 25;var svg = d3.select("body").append("svg") .attr("class","axis") .attr("width", width) ...
阅读全文
posted @ 2015-01-28 10:42 valentine is me
阅读(613)
评论(0)
推荐(0)
2015年1月26日
statistics复习
摘要: 概要来源:1660年,德国人使用statt记录人们出生、死亡信息。定义:用收集数据、分析数据、由数据得出结论的一组概念、方法。思想核心:随机性、规律性及彼此关系。统计学根基:1 概率,一个取值为0到1的数,告诉我们某一特定时间有多大机会发生。2 变量,可能取2个或更多可能值的特征、特质或属性。 eg...
阅读全文
posted @ 2015-01-26 23:43 valentine is me
阅读(491)
评论(0)
推荐(0)
d3.js学习12
摘要: 简单的svgvar width=600, height=500; var svg = d3.select("body").append("svg"); svg.attr("height",height) .attr("width",width); svg.append("...
阅读全文
posted @ 2015-01-26 16:32 valentine is me
阅读(225)
评论(0)
推荐(0)
2015年1月22日
Python 不同数据类型比较
摘要: temp = '32'if temp > 85: print "Hot"elif temp > 62: print "Comfortable" else: print "Cold" 结果输出为Hot.Why?Essentially, "...the choice whether one ...
阅读全文
posted @ 2015-01-22 23:27 valentine is me
阅读(361)
评论(0)
推荐(0)
计算机外语收集
摘要: nested condition statement 嵌套条件语句Interpreter 解释器branching programs 分支程序syntax 语法semantic语义code structure 代码结构piece of code 代码段constant time 常数时间loopin...
阅读全文
posted @ 2015-01-22 11:24 valentine is me
阅读(184)
评论(0)
推荐(0)
2015年1月20日
d3.js学习-联系力学图
摘要: 对这个做了一个小小的改变json数据也在以上链接var width=screen.width-100, height=screen.height-160;//颜色尺度var color = d3.scale.category20();//var force=d3.layout.force(...
阅读全文
posted @ 2015-01-20 15:46 valentine is me
阅读(777)
评论(0)
推荐(0)
d3.js学习11
摘要: 单元素动画transition().duration(duration)var body = d3.select("body"), duration = 5000; body.append("div") .classed("box",true) .style("background-color"...
阅读全文
posted @ 2015-01-20 09:48 valentine is me
阅读(140)
评论(0)
推荐(0)
2015年1月19日
d3.js学习10
摘要: 坐标轴-横向d3.svg.axisvar height=500,width=500,margin=25,offset=50,axisWidth=width-2*margin,svg;function createSVG(){ svg=d3.select("body").append("svg") ...
阅读全文
posted @ 2015-01-19 11:21 valentine is me
阅读(213)
评论(0)
推荐(0)
2015年1月16日
d3.js学习9
摘要: d3.js数据可视化实战手册 学习笔记插值器Interpolation 给定值域,往中间填值并打印出来字符插值var data=[];var sizeScale=d3.scale.linear() .domain([0,9]) .range([ "italic bold 12px/30px Geo...
阅读全文
posted @ 2015-01-16 14:44 valentine is me
阅读(212)
评论(0)
推荐(0)
d3.js学习8
摘要: 颜色尺度d3.scale.category()d3.scale.category10()construct an ordinal scale with ten categorical colors.d3.scale.category20()construct an ordinal scale wit...
阅读全文
posted @ 2015-01-16 10:28 valentine is me
阅读(447)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
9
下一页
公告