面向函数的数据处理框架Canal.js.zip
Canal.js 是一款面向函数的数据处理框架,力图在 js 中提供类似于 spark 的编程风格。Common TransformCanal.of([ 4, 0, 3, 5, 2, 4 ]) .filter(function(d) { return d > 2; }) .distinct() .sortWith() .map(function(d) { return [ d % 2, d ]; }) .collect()[1, 3] [0, 4] [1, 5]Group OperationCanal.of([ 4, 0, 3, 5, 2, 4 ]) .filter(function(
用户评论