A vector object loaded from a data source.
Inherits: Vector
DataVector ( source, field [, start [, n [, skip [, ave]]]] )
DataVector ( source, field, typeStart, start, typeCount, count [, skip [, ave]] )
reload ( )
changeFile ( source )
changeFrames ( start, count [, skip [, ave]] )
changeFramesByTime ( typeStart, start, typeCount, count [, skip [, ave]] )
DataSource source - The DataSource to load data from. This may be a string containing the url of the DataSource to load. If so, it will attempt to reuse an existing DataSource instance, or fall back to a new DataSource object. It may also be specified as a DataSource object.
string field - The field to load from the source.
number start - The frame to start reading from. [OPTIONAL]
number n - The number of frames to read. [OPTIONAL]
number skip - The number of samples to skip by. [OPTIONAL]
boolean ave - Set to true to do boxcar filtering. [OPTIONAL]
DataSource source - The DataSource to load data from. This may be a string containing the url of the DataSource to load. If so, it will attempt to reuse an existing DataSource instance, or fall back to a new DataSource object. It may also be specified as a DataSource object.
string field - The field to load from the source.
string typeStart - The type of the value specifying the start position. The permissible values are as follows:
frames
date
ms (milliseconds)
s (seconds)
m (minutes)
h (hours)
days
weeks
months
years
number start - The starting frame, date (a string argument), or time offset.
string typeCount - The type of the value specifying the count
number count - The number of frames or time duration to read. The permissible values are as follows:
frames
ms (milliseconds)
s (seconds)
m (minutes)
h (hours)
days
weeks
months
years
number skip - The number of samples to skip by. [OPTIONAL]
boolean ave - Set to true to do boxcar filtering. [OPTIONAL]
DataSource source - The DataSource to switch to.
number start - The starting frame.
number count - The number of frames to read.
number skip - The number of frames to skip by. [OPTIONAL]
boolean ave - True to boxcar filter. [OPTIONAL]
string typeStart - The type of the value specifying the start position. The permissible values are as follows:
frames
date
ms (milliseconds)
s (seconds)
m (minutes)
h (hours)
days
weeks
months
years
number start - The starting frame, date (a string argument), or time offset.
string typeCount - The type of the value specifying the count
number count - The number of frames or time duration to read. The permissible values are as follows:
frames
ms (milliseconds)
s (seconds)
m (minutes)
h (hours)
days
weeks
months
years
number skip - The number of frames to skip by. [OPTIONAL]
boolean ave - True to boxcar filter. [OPTIONAL]
True if the vector should skip by skipLength samples while reading from the data source.
If true, the vector reads only a maximum number of samples from the end of the source.
The requested starting frame number. May not be the actual startFrame.
The number of frames requested to be read from the source. May not be the actual frames.
The data source object used by this DataVector.
Would you like to make a comment or contribute an update to this page?
Send feedback to the KDE Docs Team