This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

@stdlib/dist-plot-flat

0.0.96 • Public • Published

Plot

Two-dimensionality plotting.

Usage

var plot = require( '@stdlib/dist-plot-flat' ).plot;

plot( [x, y,] [options] )

Returns a plot instance for creating 2-dimensional plots.

var plot = new Plot();
// returns <Plot>

To provide plot data at instantiation, provide x and y data as arguments.

var x = [[0.10, 0.20, 0.30]];
var y = [[0.52, 0.79, 0.64]];

var plot = new Plot( x, y );
// returns <Plot>

For supported options, consult the documentation.


Notes

  • This package contains distributable files for use in browser environments or as shared ("vendored") libraries in server environments. Each distributable file is a standalone UMD bundle which, if no recognized module system is present, will expose bundle contents to the global scope.

  • Each minified bundle has a corresponding gzip-compressed bundle. The gzip compression level for each compressed bundle is 9, which is the highest (and most optimal) compression level. Deciding between uncompressed and compressed bundles depends on the application and whether compression is handled elsewhere in the application stack (e.g., nginx, CDN, et cetera).

  • While you are strongly encouraged to vendor bundles and host with a CDN/provider which can provide availability guarantees, especially for production applications, bundles are available via unpkg for quick demos, proof-of-concepts, and instructional material. For example,

    <script type="text/javascript" src="https://unpkg.com/@stdlib/dist-plot-flat"></script>

    Please be mindful that unpkg is a free, best-effort service relying on donated infrastructure which does not provide any availability guarantees. Under no circumstances should you abuse or misuse the service. You have been warned.

  • If you intend on embedding a standalone bundle within another bundle, you may need to rename require calls within the standalone bundle before bundling in order to maintain scoped module resolution. For example, if you plan on using browserify to generate a bundle containing embedded bundles, browserify plugins exist to "de-require" those bundles prior to bundling.

  • The bundles in this package expose the following stdlib packages:


Examples

var randn = require( '@stdlib/random/base/randn' );
var Float64Array = require( '@stdlib/array/float64' );
var plot = require( '@stdlib/dist-plot-flat' ).plot;

var now;
var x;
var y;
var i;

// Create some data...
now = ( new Date() ).getTime();
x = new Float64Array( 100 );
y = new Float64Array( x.length );
for ( i = 0; i < x.length; i++ ) {
    x[ i ] = now + (i*360000);
    y[ i ] = 50.0 + (10.0*randn());
}

// Create a new plot:
var h = plot( [x], [y], {
    'width': 600,
    'height': 480,
    'xScale': 'time',
    'xTickFormat': '%H:%M'
});

// Render as HTML:
var html = h.render( 'html' );
console.log( html );

To include the bundle in a webpage,

<script type="text/javascript" src="/path/to/@stdlib/dist-plot-flat/build/bundle.min.js"></script>

If no recognized module system is present, access bundle contents via the global scope.

<script type="text/javascript">
    // If no recognized module system present, exposed to global scope:
    var plot = stdlib_plot_flat.plot;
</script>

Package Sidebar

Install

npm i @stdlib/dist-plot-flat

Weekly Downloads

0

Version

0.0.96

License

Apache-2.0

Unpacked Size

2.26 MB

Total Files

6

Last publish

Collaborators

  • kgryte
  • planeshifter
  • rreusser
  • stdlib-bot