abs(ds1) - promote the list, double, array etc to QDataSet before taking abs.
accum(ds)
acos(ds)
add(ds1,ds2,ds3) - three-argument add is provided as a convenience for environments (like Java and the Mash-up tool in Autoplot) where...
addBottomDecoration(node,painter) - add code that will paint custom graphics on the canvas or on a plot. The command will be invoked after all other...
addMouseModule(plot,label,listener) - add code that will respond to mouse events.
addPlotElement(chNum) - "overplot" by adding another PlotElement to the plot and setting the data to this PlotElement.
addPlots(nrows,ncolumns,dir) - adds a block of plots to the canvas below the focus plot.
addTab(label,c) - add a tab to the running application.
addToSearchPath(syspath,path,docPath,mon) - download the jar file resource, unpack it, and add it to the search path.
addTopDecoration(node,painter) - add code that will paint custom graphics on the canvas or on a plot. The command will be invoked after all other...
alert(message) - show a popup that you know the user will see.
and(ds1,ds2)
append(ds1,ds2) - append two datasets that are QUBEs.
applyBinaryOp(ds1,ds2,op) - As with applyBinaryOp, but promote compatible objects to QDataSet first.
applyIndex(ds,dimension,indices) - apply the indices to the given dimension.
applyLambda(ds1,ds2,ds3,f) - Apply the Python function, typically a three-argument lambda function, to each element of the dataset.
applyUnaryOp(ds1,op) - apply the unary operation (such as "cos") to the dataset, propagating DEPEND_0 through DEPEND_3 and other appropriate...
arange(len0) - returns rank 1 dataset with values [0.,1.,2.,...]
asin(ds)
atan(ds)
atan2(dsy,dsx)
autoHistogram(ds) - AutoHistogram is a one-pass self-scaling histogram, useful in autoranging data.
binAverage(ds,newTags0,newTags1) of org.das2.qds.util.BinAverage - returns a dataset with tags specified by newTags, where linear averages of the points in each bin are returned.
binAverageBundle(ds,dep0,dep1) of org.das2.qds.util.BinAverage - takes rank 2 bundle (x,y,z) and averages it into table z(x,y).
binData(ds,bin) - increase the rank 1 data into rank 2 data by binning data.
binMeanAverageDeviation(ads,ds) of org.das2.qds.util.BinAverage - takes rank 2 bundle (x,y,z) and averages in table z(x,y) and computes the mean average deviation in each bin.
bind(src,srcProp,dst,dstProp,c) - binds two bean properties together.
bindGuiSafe(src,srcProp,dst,dstProp,c) - binds two bean properties together.
binsWithin(ds,bounds) - return non-zero where the bins of ds are within the bounds.
binsWithout(ds,bounds) - return non-zero where the bins of ds are outside of the bounds.
bitwiseAnd(ds1,ds2)
bitwiseOr(ds1,ds2)
bitwiseXor(ds1,ds2)
boundsDataset(s) - This returns one of a bounds dataset:...
boxcar(ds,size) of org.das2.qds.util.BinAverage - run boxcar average over the dataset, returning a dataset of same geometry.
buckshotInterpolate(xy,data,xinterp,yinterp) - 2-D interpolation performed by tessellating the space (with 3-point triangles) and doing interpolation. NOTE: this...
bundle(ds1,ds2,ds3,ds4,ds5,ds6,ds7) - bundle seven datasets, making them share their zeroth index, typically time, unlike join.
butterworth(in,order,flow,fhigh,pass) - Perform Butterworth filter for notch or band pass or band reject.
bytarr(len0,len1,len2) - create a rank 3 dataset filled with zeros, stored in unsigned bytes.
ceil(x)
chirp(t,df0,dt1,df1) - SciPy chirp function, used for testing.
circle(sradius) - return a dataset with X and Y forming a circle, introduced as a convenient way to indicate planet location.
cleanData(ds,nsigma,size) - remove the data which is N sigmas (stddev) from the mean.
clearWritable(ds) - assign zeros to all the values of the dataset.
collapse0(fillDs) - this is introduced to mimic the in-line function which reduces the dimensionality by averaging over the zeroth...
collapse0R4(ds,mon) - Collapse the rank 4 dataset on the zeroth index.
collapse1(ds) - this is introduced to mimic the in-line function which reduces the dimensionality by averaging over the first...
collapse1R4(ds,mon) - Collapse the rank 4 dataset on the first index.
collapse2(fillDs) - this is introduced to mimic the in-line function which reduces the dimensionality by averaging over the first...
collapse2R4(ds,mon) - Collapse the rank 4 dataset on the second index.
collapse3(fillDs) - this is introduced to mimic the in-line function which reduces the dimensionality by averaging over the first...
collapse3R4(ds,mon) - Collapse the rank 4 dataset on the third index.
color(val) - get the color from the python object, for example: ...
colorFromString(sval) - return the color encoded as one of:...
complexConj(ds) - return the complex conjugate of the rank 1 or rank 2 QDataSet.
complexDataset(realPart,imaginaryPart) - create a complex dataset.
complexMultiply(ds1,ds2) - perform complex multiplication, where the two datasets must have the same rank and must both end with a complex...
concatenate(ds1,ds2)
contour(tds,vv)
convertPropertyValue(context,name,value) - convert the object into the type needed for the property.
convertToString(bytes) - convert the bytes (or unicode up to 2**16) to a string.
convertUnitsTo(d,u) - convert the datum to the given units, which must be convertible.
copy(src) - copy the dataset to make a new one that is writable.
copyIndexedProperties(srcds,mds) - copy over all the indexed properties into the mutable property dataset. This was introduced to support...
copyProperties(ds) - copies the properties, copying depend datasets as well.
copysign(x,y)
cos(ds)
cosh(ds)
createApplicationModel(id) - return a new dom in a minimal Autoplot application.
createDataPointRecorder() - return a component which can be used to accumulate data.
createEvent(append,dr,rgbcolor,annotation) - tool for creating ad-hoc events datasets.
createEvents(vds,deftColor) - make canonical rank 2 bundle dataset of min,max,color,text This was originally part of EventsRenderer, but it became ...
createGui() - create a model with a GUI presentation layer.
createPolyMesh(append,xy) - create or append to a polyMesh, adding the points from rank 2 bundle xy.
crossProduct(a,b) - apply the cross product of a and b, where a or b may be rank 1, three-element vector, or both can be vector arrays of...
cubicRoot(a,b,c,d) - Enter the coefficients for a cubic of the form: a*x...
cumulativeMax(ds) - for each element i of ds, set the result[i] to the maximum of ds[0:(i+1)]
cumulativeMin(ds) - for each element i of ds, set the result[i] to the minimum of ds[0:(i+1)]
currentLine() - return the current line in the Jython script as <filename>:<linenum> or ...
dataIntersection(tE,tB) - return the values which occur in both rank 1 datasets.
dataset(arg0,u) - coerce Python objects like arrays Lists and Arrays into a QDataSet.
datum(arg0) - coerce python objects to Datum
datumRange(arg0,context) - coerce python objects to DatumRange, when the units are known.
dblarr(len0,len1,len2) - create a rank 3 dataset filled with zeros, stored in 8-byte doubles.
decimate(ds,m,n) - reduce the size of the data by keeping every nth measurement (subsample).
dependsOn(ds,dim,dep) - declare that the dataset is a dependent parameter of an independent parameter. This isolates the QDataSet semantics,...
detrend(yy,size)
detrend1(yy,size) - remove D/C and low-frequency components from the data by subtracting out the smoothed data with a boxcar of the given...
diff(ds)
dimensionCount(dss) - returns the number of physical dimensions of the object when interpreted as a dataset.
dindgen(len0,len1,len2,len3) - returns rank 4 dataset with values increasing
distance(len0,len1,c0,c1,r0,r1) - return a table of distances d[len0,len1] to the indices c0,c1; in units of r0, r1. This is motivated by a need for...
div(ds1,ds2)
divide(ds1,ds2)
divp(ds1,ds2)
dumpToDas2Stream(ds,file,ascii) - serializes the dataset to a das2stream, a well-documented, open, streaming data format.
dumpToQStream(ds,out,ascii) - serializes the dataset to a QStream, a self-documenting, streaming format useful for moving datasets. ...
ellipse(xwidth,ywidth) - return a dataset with X and Y forming a ellipse, introduced as a convenient way to indicate planet location of any...
ensureMonotonic(ds) - possibly sort the data where the DEPEND_0 tags are monotonically increasing.
ensureMonotonicAndIncreasingWithFill(ds) - Return data where the DEPEND_0 tags are monotonically increasing and non repeating.
eq(ds1,ds2) - element-wise equality test, converting arguments as necessary to like units.
equalProperties(m1,m2) - returns the subset of two groups of properties that are equal, so these may be preserved through operations.
equivalent(ds1,ds2)
eventsComplement(events,range,color,msg) - Return an events list of time intervals which are not covered in the events list. A new events list is returned,...
eventsConjunction(tE,tB) - return an events list of when events are found in both events lists.
eventsDiff(tE,tB) - return an events dataset describing differences between the two events lists.
exp(ds1) - convert array, list, double, etc to QDataSet and return exp(d)
exp10(ds1)
expandToFillGaps(ds,factor) - Special self-configuring function by the RPW Group at U.
expandWaveform(ds) - special function needed by the RPW Group at U.
expm1(x) - Returns ...
extent(ds,wds,range) - returns a two element, rank 1 dataset containing the extent (min to max) of the data, allowing an external evaluation...
extentSimple(ds,range) - This is introduced to study effect of https://sourceforge.net/p/autoplot/feature-requests/445/ Do not use this in...
fft(ds,window,stepFraction,mon) - perform ffts on the waveform as we do with fftPower, but keep real and imaginary components.
fftFilter(ds,len,filt) - Apply windows to the data to prepare for FFT.
fftLinearSpectralDensity(ds,window,stepFraction,mon) - Perform the linear spectral density function
fftLinearSpectrum(ds,window,stepFraction,mon) - Perform the linear spectrum function
fftPower(ds) - returns the power spectrum of the waveform.
fftPowerMultiThread(ds,len,mon) - Experiment with multi-threaded FFTPower function.
fftPowerSpectralDensity(ds,window,stepFraction,mon) - Perform the power spectral density function
fftPowerSpectrum(ds,window,stepFraction,mon) - Perform the linear spectrum function
fftWindow(ds,len) - perform ffts on the rank 1 dataset to make a rank2 spectrogram.
fileCanRead(file) of org.autoplot.jythonsupport.Util - return true if the file can be read. This is introduced to avoid imports of java.io.File.
fileExists(file) of org.autoplot.jythonsupport.Util - return true if the file exists.
fillIsDifferent(ds1,ds2) - return true of the representation of fill is different in the two data sets. TODO: this does not consider WEIGHTS.
findJavaPathRoots(destDir) - search the folder for the names of packages.
findex(x,y)
findgen(len0,len1,len2,len3) - returns rank 4 dataset with values increasing
finite(ds) - returns 1 where the data is not NaN, Inf, etc I needed this when I was working with the RBSP polar scatter script.
fixLayout() - make the layout more efficient by removing empty spaces and overlapping plots.
flatten(ds) - flatten a rank N dataset, though currently rank 4 is not supported. The result for rank 2 is an n,3 dataset of...
flattenWaveform(ds) - flatten a rank 2 dataset where the y depend variable is just an offset from the xtag.
floor(ds1)
fltarr(len0,len1,len2)
formUri(vapScheme,resourceUri,args) - convenience method for creating URIs.
formatDataSet(ds,file,monitor) - Export the data into a format implied by the filename extension.
gamma(n) - return the gamma function for numbers greater than 0.
ge(ds1,ds2)
generateTimeRanges(spec,srange) of org.autoplot.jythonsupport.Util - Given a spec to format timeranges and a range to contain each timerange, produce a list of all timeranges covering the...
getAllCompletions(file) of org.autoplot.jythonsupport.Util - return a list of all completions, even if they are not complete.
getApplication() - return the focus application.
getApplicationModel() - returns the internal application model (the object that does all the business).
getAutoplotScriptingVersion() of org.autoplot.jythonsupport.Util - this returns a double indicating the current scripting version, found at the top of autoplot2023.py in...
getCompletions(file) of org.autoplot.jythonsupport.Util - return a list of completions.
getDataSet(suri,timerange) of org.autoplot.jythonsupport.Util - load the data specified by URI into Autoplot...
getDataSetFromStream(spec,in,mon) of org.autoplot.jythonsupport.Util - load data from the input stream into Autoplot internal data model.
getDataSets(uris,timerange,mon) of org.autoplot.jythonsupport.Util - load multiple uris simultaneously.
getDataSource(suri) of org.autoplot.jythonsupport.Util - returns the dataSource for the given URI.
getDocumentModel() - get the document model (DOM).
getInstance() of org.autoplot.ScriptContext2023
getMetadata(suri,mon) of org.autoplot.jythonsupport.Util - load the metadata for the url.
getProperty(ds,propertyName,clazz) - return the property, issuing a warning and returning null when the property value is not of the correct type.
getQubeDimsForArray(arg0) - return the length of each index of a n-D array.
getTimeRangesFor(surl,timeRange,format) of org.autoplot.jythonsupport.Util - return an array of URLs that match the spec for the time range provided. For example, ...
getTimeSeriesBrowse(ds) of org.autoplot.jythonsupport.Util - get the TimeSeriesBrowse capability, if available.
getViewWindow() - return the Window for the application, to be used for dialogs. See createGui(), which creates the view.
getWindow() - return the internal handle for the window and dom within.
greaterOf(ds1,ds2)
grid(ds) - Opposite of the flatten function, takes rank 2 bundle (x,y,z) and makes a table from it z(x,y).
gridIrregularY(t,y,z,ytags) - This finds sweeps of Y and interpolates T-...
gt(ds1,ds2)
guardedSplit(s,delim,exclude1,exclude2) of org.autoplot.jythonsupport.Util - only split on the delimiter when we are not within the exclude delimiters.
guessLabel(ds,deft) - get the label, using the NAME when LABEL is not available.
guessName(ds,deft) - guess a name for the dataset, looking for NAME and then safeName(LABEL).
hanning(ds,len) - Apply Hanning (Hann) windows to the data to prepare for FFT.
hashcodes(ds) - return a rank 1 hashcodes of each record the dataset, with one hashcodes value for each record.
hilbert(ds) - Perform the Hilbert function on the rank 1 dataset, similar to the hilbert function in IDL and Matlab.
hilbertSciPy(ds) - Perform the Hilbert function on the rank 1 dataset, similar to the scipy.signal.hilbert function in SciPy.
histogram(ds,binCount) - returns a histogram of the dataset, based on the extent and scaletype of the data.
histogram2d(x,y,bins,xrange,yrange) - make a 2-D histogram of the data in x and y.
identifyContinuousBlocks(cadence,extent,lastBlocks,times) - return events list containing start and stop times of continuous blocks in time.
ifft(ds,window,stepFraction,mon) - create the inverse fft of the real and imaginary spec
imax(ds)
imin(ds)
indgen(len0,len1,len2) - returns rank 3 dataset with values increasing
intarr(len0,len1,len2) - create a rank 3 dataset filled with zeros, stored in 4-byte ints.
interpolate(vv,findex0,findex1,findex2) - interpolate values from rank 2 dataset vv using fractional indices in rank N findex, using bilinear interpolation.
interpolateGrid(x,y,z)
interpolateMod(vv,mod,findex) - like interpolate, but the findex is recalculated when the two bracketed points are closer in the modulo space than...
invalid(ds) - returns a dataset with one where the data is invalid, and zero the data is valid.
invokeSometime(func,arg) - run the function on a different thread
irange(max) - mimic the Jython xrange function for use in loops.
isAngleRange(ds,strict) - return true if the dataset can be interpreted as radian degrees from 0 to PI or from 0 to 2*PI.
isBundle(zds) - return true if the dataset is a bundle.
isLegacyBundle(zds) - return true if DEPEND_1 is set and its units are EnumerationUnits.
isLegacyImports() of org.autoplot.jythonsupport.Util - return true if we should do the imports as before, where all of Autoplot is imported with each session.
isModelInitialized() - provide way to see if the model is already initialized (e.g.
isSafeName(name) - returns true if the name is a Java-style identifier, starting with one of a-z, A-Z, or _; followed by a-z, A-Z, 0-9,...
join(ds1,ds2) - Join two rank N datasets to make a rank N+1 dataset, with the first dimension having two elements.
labelsDataset(label,context) - create a rank 0 label dataset. ...
le(ds1,ds2)
lesserOf(ds1,ds2)
link(d0,d1,d2,z)
linspace(omin,omax,len0) - return a rank 1 dataset with ...
listDirectory(suri) of org.autoplot.jythonsupport.Util - returns an array of the files in the local or remote filesystem pointed to by suri.
load(filename) - load the .vap file.
loadVap(filename) - load a vap from a file and return the dom.
log(ds1)
log10(ds1)
logspace(omin,omax,len0) - return a rank 1 dataset with ...
lonarr(len0,len1) - create a rank 2 dataset filled with zeros, stored in 8-byte longs.
lt(ds1,ds2)
magnitude(ds1)
main(args) of org.autoplot.jythonsupport.Util
makeColorTable(name,index,rgb) - returns a color table with the given name.
matrixFormat(mm,style) - format the matrix values, using ...
matrixFromEuler(seq,angle) - return the matrix rotating about one axis.
matrixMultiply(m,v) - matrix multiply the components of vector ...
matrixParse(smat) - parse the string into a rank 2 matrix
maybeCopy(ads0) - Copy the dataset to an ArrayDataSet only if the dataset is not already an ArrayDataSet or BufferDataSet. Note this...
mean(o)
meanAverageDeviation(ds) - return the Mean Average Deviation (MAD) of the rank N dataset.
median(ds) - Median function that sorts a rank N dataset and returns its median.
medianFilter(ds,size) - 1-D median filter with a boxcar of the given size.
merge(ds1,ds2) - Merge the two sorted rank N datasets, using their DEPEND_0 datasets, into one rank N dataset.
mkdir(dir) - make the directory.
mod(ds1,ds2)
mode(ds) - return the most frequently occurring element of the valid elements of a rank N dataset
modp(ds1,ds2)
monotonicSubset(ds) - ensure that there are no non-monotonic or repeat records, by removing the first N-1 records of N repeated records.
multiply(ds1,ds2)
ne(ds1,ds2) - element-wise equality test, converting arguments as necessary to like units.
negate(ds1)
neighborFill(ds) - fill in the missing values by copying nearest data points.
newApplication(id) - get or create the application identified by the name.
newDialogWindow(parent,title) - return a new Autoplot.
newWindow(id) - create a new window.
normalize(ds,dim) - normalize the data so that the max at a row or column is 1, where we have normalized by the biggest value along a...
not(ds1)
ones(len0,len1,len2,len3) - return new dataset filled with ones.
or(ds1,ds2)
outerProduct(ds1,ds2)
outerSum(ds1,ds2)
peekAt(o) - This is intended to be used with a debugger.
plot(chNum,label,x,y,z,renderType,reset) - plot the dataset in the specified dataSource node, using the render type specified.
polarToCartesian(ds) - converts a rank 2 bundle of polar data, where ds[:,0] are the radii and ds[:,1] are the angles.
polyCenters(polyMesh) - return an array of the centers of each triangle in the triangle mesh.
popString(line) of org.autoplot.jythonsupport.Util
pow(ds1,pow) - element-wise pow (** in FORTRAN, ...
putBundleProperty(ds,name,index,value) - Like putIndexedProperty, but manages the bundle for the client.
putIndexedProperty(ds,name,index,value) - Like putProperty, but this inserts the value at the index.
putProperty(ds,name,value) - converts types often seen in Jython codes to the correct type.
putValues(ds,indices,value) - like putProperty, but this inserts values into the dataset.
randn(len0,len1,len2,len3) - return a rank 4 dataset of random numbers of a Gaussian (normal) distribution.
randomSeed(seed) - reset the random sequence used by randu and randn to the given seed.
randomn(seed,len0,len1,len2,len3) - returns a rank 3 dataset of random numbers of a gaussian (normal) distribution.
randomu(seed,len0,len1,len2,len3) - returns a rank 3 dataset of random numbers of a uniform distribution.
randu(len0,len1,len2,len3) - return a rank 4 dataset of random uniform numbers from 0 to 1 but not including 1.
readConfiguration(suri) of org.autoplot.jythonsupport.Util - read the preferences into a map.
rebin(ds,n0,n1,n2) of org.das2.qds.util.BinAverage - reduce the rank 3 dataset by averaging blocks of bins together.
rebundle(bundle1,ii) - unbundle datasets by index from the bundle, and rebundle them in the order specified.
reduceBins(dep1) - reduce each bin to its center.
reduceMax(ds,dim,mon) - reduce the dataset...
reduceMean(ds,dim,mon) - reduce the dataset...
reduceMedian(ds,dim,mon) - reduce the dataset...
reduceMin(ds,dim,mon) - reduce the dataset...
reduceSum(ds,dim) - reduce the dataset...
reform(ds,qube)
removeFill(ds) - remove the fill values from the rank 1 dataset, returning a smaller dataset. This was introduced to support the...
removeIndeces(vv,indices) - remove the data at the indices from the rank 1 dataset.
removeValues(ds,indices)
removeValuesGreaterThan(ds,v)
removeValuesLessThan(ds,v)
replicate(val,len0,len1) - returns a rank N+2 dataset by repeating the rank N dataset, so all records will have the same value.
requireAutoplotScriptingVersion(v) of org.autoplot.jythonsupport.Util - throw an exception if the scripting version cannot be supported.
rescale(data,min,max) - calculate the range of data, then rescale it so that the smallest values becomes min and the largest values becomes...
rescaleRange(dr,min,max) - returns rank 1 QDataSet range relative to range "dr", where 0.
rescaleRangeLogLin(dr,min,max) - like rescaleRange, but look at log/lin flag.
reset() - reset the application to its initial state.
residuals(ds,boxcarSize) of org.das2.qds.util.BinAverage - returns number of stddev from adjacent data.
reverse(ds)
rgbColorDataset(red,green,blue) - create a dataset of RGB colors.
ripples(len0,len1,len2,len3) - rank 4 dataset for demos and testing.
ripplesJoinSpectrogramTimeSeries(len) - return fake position data for testing result is rank 3 bundle [3,len/3,27*]
ripplesPitchAngleDistribution() - return an example of a QDataSet containing a pitch angle distribution.
ripplesSpectrogramTimeSeries(len) - return fake position data for testing result is rank 2 bundle [len,27]
ripplesTimeSeries(len) - return fake rank 1 data timeseries for testing
ripplesVectorTimeSeries(len) - return fake position data for testing. result is rank 2 bundle [len,3]
ripplesWaveformTimeSeries(len) - return fake waveform data for testing result is rank 2 bundle [len,512]
round(ds1,ndigits) - element-wise round function, which rounds to i decimal places. 0.5 is round up.
runInParallel(job,argument,mon) of org.autoplot.jythonsupport.Util - run the python jobs in parallel.
safeName(suggest) - made a Java-style identifier from the provided string See Autoplot/src/scripts/safeName.jy which demonstrates this.
saferName(suggest) - extra spaces and pipes cause problems in the Operations text field.
save(filename) - save the current state as a vap file
saveVap(dom,filename) - save the application dom to a file.
sawtooth(t) - generates a sawtooth from the tags, where a peak occurs with a period 2*PI. All values of T should be ge zero.
setApplication(app) - set the current application for commands.
setApplicationModel(m) - set the focus for scripts.
setCanvasSize(width,height) - set the size of the canvas.
setDataSourceURL(surl) - set the internal model...
setDefaultApplication() - reset the script focus to the default application.
setDepend0Cadence(ds,arg) - set the cadence property for the DEPEND_0 data.
setDepend1Cadence(ds,arg) - set the cadence property for the DEPEND_1 data.
setLayout(nrows,ncolumns) - reset the layout to have the given number of rows and columns.
setLayoutOverplot(nplotElement) - make a single plot with so many plot elements.
setNominalRange(ds,arg) - set the metadata property LIMITS_NOMINAL_MIN and LIMITS_NOMINAL_MAX, which are displayed in the series renderer as a...
setRenderStyle(name) - Set the style used to render the data using a string identifier: spectrogram, series, scatter, histogram,...
setStatus(message) - set the Autoplot status bar string.
setTitle(title) - set the title of the plot.
setValidRange(ds,arg) - assert that the valid data is within the given range like "10 to 50000", where the range is parsed using...
setWarnRange(ds,arg) - set the metadata property LIMITS_WARN_MIN and LIMITS_WARN_MAX, which are displayed in the series renderer as a red...
setWindow(appm) - Set the application model.
setWindowLocation(x,y) - set the window location
shortarr(len0,len1,len2) - create a rank 3 dataset filled with zeros, stored in 2-byte shorts.
showMessageDialog(message) - show a popup to the scientist, which they must acknowledge before this returns.
shuffle(ds) - returns a rank 1 dataset of indices that shuffle the rank 1 dataset ds. ...
signum(x)
sin(ds)
sinh(ds)
size(ds) - returns the number of elements in each index.
sleep(millis) of org.autoplot.jythonsupport.Util - sleep for so many milliseconds.
slice0(ds,sliceds) - returns the slice at the given slice location.
slice1(ds,sliceds) - returns the slice at the given slice location.
slice2(ds,sliceds) - returns the slice at the given slice location.
slice3(ds,sliceds) - returns the slice at the given slice location.
slices(ds,args) - slice each dimension in one call, so that chaining isn...
smooth(ds,size)
smooth1(ds,size) - smooth over the first dimension (not the zeroth).
smooth2d(ds,n0,n1) - smooth in both the first and second dimensions.
smoothFit(xx,yy,size)
sort(ds)
sortInTime(ds) - pick out the timetags and sort the data based on these.
sqrt(ds1)
square(t) - generates a square from the tags, where a the signal is 1 from 0-PI, 0 from PI-2*PI, etc.
stddev(ds) - standard deviation function.
strarr(len0,len1) - return a rank 2 QDataSet containing empty strings.
subset(ds,w) - return the data at the indices given.
subtract(ds1,ds2) - subtract one dataset from another, using dataset to convert the arguments.
synchronize(dsTarget,dsSources) - The first dataset...
synchronizeNN(dsTarget,dsSources) - The first dataset...
synchronizeOne(dsTarget,dsSource) - The first dataset...
taggen(base,dcadence,len0,units) - creates tags.
tan(ds)
tanh(ds)
timeShift(ds,delta) - Shift the DEPEND_0 or the time column of a rank 2 dataset by the amount.
timegen(baseTime,cadence,len0) - returns rank 1 dataset with values that are times.
toDegrees(ds)
toRadians(ds)
toTimeDataSet(years,mons,days,hour,minute,second,nano)
total(ds,dim,mon) - reduce the dataset...
transpose(ds)
triangulate(xx,yy) - return a triangle tesselation of the space identified by rank 1 xx and yy.
trim(dim,ds,st,en) - trim the qube dataset on any of its indices, for example ds[:,:,5:10] would use this operation.
trim1(ds,st,en) - trim on the first (not zeroth) dimension.
unbind(src,srcProp,dst,dstProp) - unbind the property
unbundle(ds,i) - Extract a bundled dataset from a bundle of datasets.
unbundleBins(ds,i) - convenient method for getting the times from an events dataset, this unbundles the startTimes at i and the stopTimes...
uniq(ds,sort) - Return the unique indices from the rank 1 dataset, using sort to resort the indices. If sort is null, then the...
uniqValues(ds,sort) - return the unique elements from the dataset.
unwrap(ds,discont) - SciPy...
valid(ds) - returns a dataset with zero where the data is invalid, and positive non-zero where the data is valid.
validateParam(name,v,constraint) - validate the parameter value against the constraint.
variance(ds) - variance function is the square of the stddev.
waitUntilIdle(id) - wait until the application is idle.
where(ds)
whereR1(ds) - returns a dataset containing the indices of where the dataset is non-zero. This is used when the code using this...
whereSequence(ds,seq) - return a list of indices, similar to the where result.
windowFunction(type,len) - return a dataset for the given filter type, added to support use in Jython.
within(ds,bounds) - return non-zero where the data in ds are within the bounds.
withinSet(ds,set) - returns 1 where the dataset contains elements within the set, 0 where elements are not within the set. Note this...
without(ds,bounds) - return non-zero where the data in ds are outside of the bounds.
writeToBufferedImage() - convenient method for getting an image from the current canvas.
writeToPdf(out) - write out the current canvas to a pdf to the output stream.
writeToPng(out) - write out the current canvas to stdout.
writeToSvg(out) - write out the current canvas to stdout.
xtags(ds) - return the xtags of the dataset.
ytags(ds) - return the ytags of the dataset.
zeros(ds) - return a new dataset filled with zeroes that has the same geometry as the given dataset. Only supports QUBE datasets.