We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 101edfc commit b1be6f3Copy full SHA for b1be6f3
1 file changed
lib/node_modules/@stdlib/plot/lib/index.js
@@ -0,0 +1,24 @@
1
+'use strict';
2
+
3
+/**
4
+* Plot.
5
+*
6
+* @module @stdlib/plot
7
8
+* @example
9
+* var plot = require( '@stdlib/plot' );
10
11
+* var x = [ 1, 2, 3 ];
12
+* var y = [ 1, 0, 1 ];
13
14
+* var plt = plot( [ x ], [ y ] );
15
+*/
16
17
+// MODULES //
18
19
+var plot = require( '@stdlib/plot/ctor' );
20
21
22
+// EXPORTS //
23
24
+module.exports = plot;
0 commit comments