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