All Projects → BigFatDog → cubism-es

BigFatDog / cubism-es

Licence: MIT license
ES6 module of cubism.js, based on d3v5.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to cubism-es

D3js doc
D3js中文文档 D3中文 📊 📈 🎉
Stars: ✭ 1,599 (+6562.5%)
Mutual labels:  d3v4, d3v5
parcoords-es
ES6 module of Syntagmatic's Parallel Coordinates
Stars: ✭ 58 (+141.67%)
Mutual labels:  d3v4, d3v5
mlforecast
Scalable machine 🤖 learning for time series forecasting.
Stars: ✭ 96 (+300%)
Mutual labels:  time-series
sysidentpy
A Python Package For System Identification Using NARMAX Models
Stars: ✭ 139 (+479.17%)
Mutual labels:  time-series
lightweight-temporal-attention-pytorch
A PyTorch implementation of the Light Temporal Attention Encoder (L-TAE) for satellite image time series. classification
Stars: ✭ 43 (+79.17%)
Mutual labels:  time-series
LSTM-Time-Series-Analysis
Using LSTM network for time series forecasting
Stars: ✭ 41 (+70.83%)
Mutual labels:  time-series
XLand
Live2D VTuber(Virtual YouTuber) App with extensible node graph editor
Stars: ✭ 62 (+158.33%)
Mutual labels:  cubism
cnn-rnn-bitcoin
Reusable CNN and RNN model doing time series binary classification
Stars: ✭ 28 (+16.67%)
Mutual labels:  time-series
Start maja
To process a Sentinel-2 time series with MAJA cloud detection and atmospheric correction processor
Stars: ✭ 47 (+95.83%)
Mutual labels:  time-series
DeepEcho
Synthetic Data Generation for mixed-type, multivariate time series.
Stars: ✭ 44 (+83.33%)
Mutual labels:  time-series
tempo
API for manipulating time series on top of Apache Spark: lagged time values, rolling statistics (mean, avg, sum, count, etc), AS OF joins, downsampling, and interpolation
Stars: ✭ 212 (+783.33%)
Mutual labels:  time-series
forecasting models
An overview of univariate time series forecasting models with sample code.
Stars: ✭ 39 (+62.5%)
Mutual labels:  time-series
ww tvol study
Process global-scale satellite and airborne elevation data into time series of glacier mass change: Hugonnet et al. (2021).
Stars: ✭ 26 (+8.33%)
Mutual labels:  time-series
IMCtermite
Enables extraction of measurement data from binary files with extension 'raw' used by proprietary software imcFAMOS/imcSTUDIO and facilitates its storage in open source file formats
Stars: ✭ 20 (-16.67%)
Mutual labels:  time-series
go-metrics-wavefront
Wavefront plugin for go-metrics
Stars: ✭ 12 (-50%)
Mutual labels:  time-series
fastverse
An Extensible Suite of High-Performance and Low-Dependency Packages for Statistical Computing and Data Manipulation in R
Stars: ✭ 123 (+412.5%)
Mutual labels:  time-series
DTW
Dynamic Time Warping in Python / C (using ctypes)
Stars: ✭ 26 (+8.33%)
Mutual labels:  time-series
price-optimization-shiny
Shiny app for Price Optimization using prophet and lme4 libraries for R.
Stars: ✭ 28 (+16.67%)
Mutual labels:  time-series
tsfuse
Python package for automatically constructing features from multiple time series
Stars: ✭ 33 (+37.5%)
Mutual labels:  time-series
CausalityTools.jl
Algorithms for causal inference and the detection of dynamical coupling from time series, and for approximation of the transfer operator and invariant measures.
Stars: ✭ 45 (+87.5%)
Mutual labels:  time-series

cubism-es

cubism-es is an ES6 module of cubism, based on D3V5.

IMPORTANT Version 1.1.0 contains api breaks. Please see below for details

Usage:

  1. ES6 Usage
npm install cubism-es --save
import { context } from 'cubism-es';

Please note adding cubism-es will automatically add d3 as a dependency into your project. From version 1.1.2, there's no need to declare d3 as globals in your project with the webpack ProvidePlugin

  1. Standalone Usage
<script src="lib/d3.v5.min.js" charset="utf-8" type="application/javascript"></script>
<script src="lib/cubism-es.standalone.js" charset="utf-8" type="application/javascript"></script>

API Breaks (v1.1.0)

function cubism cubism-es
Context.axis d3.select(...).call(context.axis) context.axis().render(d3.select(...))
Context.rule d3.select(...).call(context.rule) context.rule().render(d3.select(...))
Context.horizon d3.select(...).call(context.horizon) context.horizon().render(d3.select(...))

API Breaks (v1.0.0 and previous)

function cubism cubism-es
Context d3.select(...).call(cubism.context) const context = cubism.context(d3.select(...)).height(30)
Context.axis d3.select(...).call(context.axis) context.axis(d3.select(...))
Context.rule d3.select(...).call(context.rule) context.rule(d3.select(...))
Context.horizon d3.select(...).call(context.horizon) context.horizon(d3.select(...))

Demo

the following samples work, you can try them by downloading this project and running npm install and npm run dev:

Development

  1. Clone repository
  2. Run commands
npm install         // install dependencies
npm run dev         // view demos in web browser at localhost:3004
npm run build       // build
npm run test        // run tests only
npm run test:cover  // run tests and view coverage report

Documentation

For more information, please visit square/cubism's home page and wiki

Limitation

Graphite, Cube and GangliaWeb have not been verified yet.

Credits

Contributors of the original cubism.

License

This project is licensed under the MIT License - see the LICENSE file for details

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].