- 授权协议: MIT/GPL
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://misoproject.com/dataset/
软件介绍
Miso 是一个开源工具包,旨在加快建立高品质的互动故事和数据可视化的内容。它让浏览器加载、解析、排序、查询和操作数据变得非常简单。
示例代码:
//Load Uranium Production CSV File, looks like:
// year,value
// 1980,43.7
// ...
var ds = new Miso.Dataset({
url : "/data/uranium.csv",
delimiter : ",",
columns : [
{ name : "year", type : "time", format : "YYYY" }
]
});
ds.fetch({
success: function() {
//Select rows in the 80's & find their average
var uraniumInThe80s = this.where({
rows : function(row) {
return (row.year >= moment([1980]) &&
row.year < moment([1990]));
}
}).mean("value");
log("80's Average:", uraniumInThe80s);
log("Total Average:", ds.mean('value') );
}
});
Beginning XSLT 2.0
Jeni Tennison / Apress / 2005-07-22 / USD 49.99
This is an updated revision of Tennison's "Beginning XSLT", updated for the new revision of the XSLT standard. XSLT is a technology used to transform an XML document with one structure into another ......一起来看看 《Beginning XSLT 2.0》 这本书的介绍吧!
在线进制转换器
各进制数互转换器
UNIX 时间戳转换
UNIX 时间戳转换
