spot framework
Version 0.0.7
จัดกลุ่ม bin รวม และรวมชุดข้อมูลมิติสูงสำหรับการวิเคราะห์ภาพเชิงโต้ตอบ กำหนดภาพตัดขวางแบบง่าย (มิติที่ต่ำกว่า) ของข้อมูลของคุณ เรียกว่าตัวกรอง กรองพาร์ติชัน (bin) ข้อมูลและสามารถทำการรวมกลุ่มได้ (ผลรวม ค่าเฉลี่ย ส่วนเบี่ยงเบนมาตรฐาน ฯลฯ) ผลลัพธ์จะถูกส่งกลับเป็นอาร์เรย์อย่างง่ายซึ่งคุณสามารถพล็อตหรือวิเคราะห์ได้ (ดูโครงการ SPOT อื่น ๆ ด้วย) ตัวกรองทั้งหมดเชื่อมโยงและอัปเดตโดยอัตโนมัติ
เมื่อใช้ API เดียว ก็สามารถรันฝั่งไคลเอ็นต์ได้อย่างเต็มที่ ผ่านตัวกรองข้าม หรือใช้ฐานข้อมูล PostgreSQL โดยใช้ spot-server
git clone https://github.com/NLeSC/spot-framework.git && cd spot
npm install
// get a new Spot instance
var Spot = require ( './src/me' ) ;
var spot = new Spot ( ) ;
// add a dataset
var dataset = spot . datasets . add ( {
name : 'My data'
} ) ;
// add some data to the dataset
dataset . crossfilter . add ( [
{ firstName : 'John' , lastName : 'Smith' , age : 35 } ,
{ firstName : 'Mary' , lastName : 'Smith' , age : 49 } ,
{ firstName : 'Little' , lastName : 'Smith' , age : 8 } ,
{ firstName : 'Dee' , lastName : 'Jones' , age : 5 } ,
{ firstName : 'Doo' , lastName : 'Jones' , age : 9 }
] ) ;
// Have SPOT scan the dataset:
// 1. it auto-detects 'firstName', 'lastName', and 'age' attributes
// 2. it creates the corresponding Facets
dataset . scan ( ) ;
// make the dataset active
spot . toggleDataset ( dataset ) ;
var dataview = spot . dataview ;
// add a filter
var filter = dataview . filters . add ( {
title : 'filter one'
} ) ;
// ... that partitions the data on 'lastName'
filter . partitions . add ( [
{ facetName : 'lastName' , rank : 1 }
] ) ;
filter . partitions . forEach ( function ( partition ) {
partition . setGroups ( ) ;
} ) ;
// ... and that takes the average over the 'age'
filter . aggregates . add ( [
{ facetName : 'age' , rank : 1 , operation : 'avg' }
] ) ;
// initialize the filter
filter . initDataFilter ( ) ;
// listen to data
filter . on ( 'newData' , function ( ) {
console . log ( 'data: ' , filter . data ) ;
} ) ;
dataview . getData ( ) ;
สามารถดูเอกสารสปอตได้ที่นี่
Jisk Attema ศูนย์วิทยาศาสตร์อิเล็กทรอนิกส์แห่งเนเธอร์แลนด์