Example of a streamgraph that can be divided into multiple area charts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Date | Apples | Blueberries | Carrots | |
|---|---|---|---|---|
| 1/1/10 | 5.53 | 11.55 | 9.99 | |
| 1/2/10 | 5.29 | 11.17 | 9.57 | |
| 1/3/10 | 4.93 | 10.86 | 9.24 | |
| 1/4/10 | 4.64 | 10.53 | 8.9 | |
| 1/5/10 | 4.5 | 10.47 | 8.86 | |
| 1/6/10 | 4.59 | 10.46 | 8.81 | |
| 1/7/10 | 4.75 | 10.62 | 8.94 | |
| 1/8/10 | 4.88 | 10.97 | 9.21 | |
| 1/9/10 | 4.74 | 11.29 | 9.44 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| id | name | priority | who | time | status | |
|---|---|---|---|---|---|---|
| T-024 | Organisation list in directory | MUST | Joe | 5 | Complete | |
| T-015 | Make term Commissions customisable | MUST | Natasha | 6 | Complete | |
| T-016 | Comments popup on select rates | MUST | Mike | 3 | In Progress | |
| T-0169 | Upgrade Centos Box | MUST | Joe | 2 | In Progress | |
| T-013 | Search in Documents on selected folder | MUST | Natasha | 6 | In Progress | |
| T-014 | Separate Document system for LA and Legals | MUST | Joe | 9 | In Progress | |
| T-017 | Demo of Look and Feel of Documents front end | MUST | Natasha | 5 | In Progress | |
| T-021 | Fix error where forum filename is greater than 100chars | MUST | Mike | 4 | Not Started | |
| T-025 | Fix admin so structure of categories displayed | MUST | Mike | 2.5 | Complete |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| license: gpl-3.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import tensorflow as tf | |
| import numpy as np | |
| import time | |
| N=10000 | |
| K=4 | |
| MAX_ITERS = 1000 | |
| start = time.time() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var gulp = require('gulp'), | |
| sass = require('gulp-ruby-sass'), | |
| gulpif = require('gulp-if'), | |
| usemin = require('gulp-usemin'), | |
| uglify = require('gulp-uglify'), | |
| gutil = require('gulp-util'), | |
| concat = require('gulp-concat'), | |
| plumber = require('gulp-plumber'), | |
| browserify = require('gulp-browserify'), | |
| minifyHTML = require('gulp-minify-html'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var gulp = require('gulp'), | |
| gutil = require('gulp-util'), | |
| sass = require('gulp-sass'), | |
| rubysass = require('gulp-ruby-sass'), | |
| fileinclude = require('gulp-file-include'), | |
| rename = require('gulp-rename'), | |
| notify = require('gulp-notify'), | |
| livereload = require('gulp-livereload'), | |
| lr = require('tiny-lr'), | |
| connect = require('gulp-connect'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Configuração de localização em Português do Brasil(PT-BR) para o D3.js realizar formatação tempo e números | |
| * Mais detalhes conferir a documentação: https://github.com/mbostock/d3/wiki/Time-Formatting | |
| */ | |
| var localized = d3.locale({ | |
| "decimal": ",", | |
| "thousands": ".", | |
| "grouping": [3], | |
| "currency": ["R$", ""], |