We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6309837 commit 96bcbfcCopy full SHA for 96bcbfc
lib/groupby.js
@@ -0,0 +1,11 @@
1
+/**
2
+* Copyright 2012-2016, Plotly, Inc.
3
+* All rights reserved.
4
+*
5
+* This source code is licensed under the MIT license found in the
6
+* LICENSE file in the root directory of this source tree.
7
+*/
8
+
9
+'use strict';
10
11
+module.exports = require('../src/transforms/groupby');
lib/index.js
@@ -10,6 +10,7 @@
var Plotly = require('./core');
12
13
+// traces
14
Plotly.register([
15
require('./bar'),
16
require('./box'),
@@ -30,9 +31,10 @@ Plotly.register([
30
31
require('./scattermapbox')
32
]);
33
-// add transforms
34
+// transforms
35
- require('./filter')
36
+ require('./filter'),
37
+ require('./groupby')
38
39
40
module.exports = Plotly;
0 commit comments