Miso Dataset

码农软件 · 软件分类 · 报表/图表制作 · 2019-08-20 17:58:57

软件介绍

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') );

  }

});

本文地址:https://codercto.com/soft/d/12796.html

Beginning XSLT 2.0

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 时间戳转换

UNIX 时间戳转换