Result
SCPI Commands :
EXPort:RESult:SAVE
EXPort:RESult:NAME
- Commands in total: 9Subgroups: 1Direct child commands: 2
- get_name() str[source]
# EXPort:RESult:NAME value: str = driver.export.result.get_name()
Sets the path, the filename and the file format of the export file.
- Returns:
file_path: String with path and file name with extension .csv.
- save() None[source]
# EXPort:RESult:SAVE driver.export.result.save()
Saves the results to file. The target file is set using method
RsMxo.export.result.name(). To select the results to be exported, use methodRsMxo.export.result.select.cursor()and methodRsMxo.export.result.select.measurement().
- save_and_wait(opc_timeout_ms: int = -1) None[source]
# EXPort:RESult:SAVE driver.export.result.save_and_wait()
Saves the results to file. The target file is set using method
RsMxo.export.result.name(). To select the results to be exported, use methodRsMxo.export.result.select.cursor()and methodRsMxo.export.result.select.measurement().Same as save, but waits for the operation to complete before continuing further. Use the RsMxo.utilities.opc_timeout_set() to set the timeout value.
- Parameters:
opc_timeout_ms – Maximum time to wait in milliseconds, valid only for this call.
- set_name(file_path: str) None[source]
# EXPort:RESult:NAME driver.export.result.set_name(file_path = 'abc')
Sets the path, the filename and the file format of the export file.
- Parameters:
file_path – String with path and file name with extension .csv.
Cloning the Group
# Create a copy of the original group, that exists independently
result_copy = driver.export.result.clone()
Subgroups