1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
{{alias}}( name[, options] )
Returns a dataset.
The function forwards provided options to the dataset interface specified
by `name`.
Parameters
----------
name: string
Dataset name.
options: Object (optional)
Function options.
Returns
-------
out: any
Dataset.
Examples
--------
> var out = {{alias}}( 'MONTH_NAMES_EN' )
[ 'January', 'February', ... ]
> var opts = { 'data': 'cities' };
> out = {{alias}}( 'MINARD_NAPOLEONS_MARCH', opts )
[ {...}, {...}, ... ]
See Also
--------
|