public class PythonScriptContext
extends org.python.core.PyJavaInstance
| Constructor and Description |
|---|
PythonScriptContext(ApplicationModel model) |
PythonScriptContext(AutoplotUI app) |
| Modifier and Type | Method and Description |
|---|---|
void |
plot(int chNum,
java.lang.String label,
QDataSet x,
QDataSet y,
QDataSet z,
java.lang.String renderType)
plot the dataset in the specified dataSource node, using the render type
specified.
|
__cmp__, __delattr__, __init__, __repr__, __str__, _is, _isnot, hashCode, noField, readExternal, unassignableField, writeExternal__abs__, __add__, __and__, __call__, __coerce_ex__, __complex__, __contains__, __delitem__, __div__, __divmod__, __eq__, __findattr__, __findattr__, __finditem__, __finditem__, __float__, __floordiv__, __ge__, __getitem__, __gt__, __hex__, __iadd__, __iand__, __idiv__, __ifloordiv__, __ilshift__, __imod__, __imul__, __int__, __invert__, __ior__, __ipow__, __irshift__, __isub__, __iter__, __iternext__, __itruediv__, __ixor__, __jfindattr__, __le__, __len__, __long__, __lshift__, __lt__, __mod__, __mul__, __ne__, __neg__, __nonzero__, __oct__, __or__, __pos__, __pow__, __radd__, __rand__, __rdiv__, __rdivmod__, __rfloordiv__, __rlshift__, __rmod__, __rmul__, __ror__, __rpow__, __rrshift__, __rshift__, __rsub__, __rtruediv__, __rxor__, __setattr__, __setitem__, __sub__, __tojava__, __truediv__, __unicode__, __xor__, fastGetClass, ifindclass, ifindfunction, ifindlocal, invoke_ex, invoke_ex, invoke_ex, invoke_ex, invoke, invoke, invoke, makeProxy__call__, __call__, __call__, __call__, __call__, __call__, __call__, __coerce__, __delattr__, __delete__, __delitem__, __delslice__, __delslice__, __dir__, __findattr__, __finditem__, __get__, __getattr__, __getattr__, __getitem__, __getnewargs__, __getslice__, __getslice__, __hash__, __idivmod__, __not__, __pow__, __rawdir__, __reduce__, __set__, __setattr__, __setitem__, __setitem__, __setslice__, __setslice__, _add, _and, _callextra, _cmp, _div, _divmod, _doget, _doget, _doset, _eq, _floordiv, _ge, _gt, _in, _jcall, _jcallexc, _jthrow, _le, _lshift, _lt, _mod, _mul, _ne, _notin, _or, _pow, _rshift, _sub, _truediv, _unsupportedop, _xor, addKeys, asInt, asLong, asName, asString, asStringOrNull, delDict, delType, dispatch__init__, equals, fastGetDict, getDict, getDoc, getType, impAttr, implementsDescrDelete, implementsDescrSet, invoke, invoke, isCallable, isDataDescr, isMappingType, isNumberType, isSequenceType, noAttributeError, readonlyAttributeError, runsupportedopMessage, safeRepr, setDict, setType, toString, typeSetup, unsupportedopMessagepublic PythonScriptContext(ApplicationModel model)
public PythonScriptContext(AutoplotUI app)
public void plot(int chNum,
java.lang.String label,
QDataSet x,
QDataSet y,
QDataSet z,
java.lang.String renderType)
plot( 0, 'label', findgen(20), ripples(20), ripples(20), 'digital' ) from org.virbo.autoplot import RenderType plot( 0, 'label', findgen(20), ripples(20), ripples(20), RenderType.digital.toString() )
chNum - the plot to use. Plots and plot elements are added as necessary to plot the data.label - the label for the dependent parameterx - QDataSet for the independent parameter for the X valuesy - QDataSet for the independent parameter for the Y valuesz - Rank 1 or Rank 2 QDataSet for the dependent parameterrenderType - hint at the render type to use, such as "nnSpectrogram" or "digital",