DataTableRow
One row of a data table containing data acquired during a test run
Refer to DataTable for more information on the data table itself.
Example
Iterate over all rows of a test and print out their pin names:
data_table = test.data_table
for row_index in range(data_table.row_count):
row = data_table.get_row(row_index)
print(row.pin_name)
property bin
Get the bin number of the test run this data table row represents.
Returns
| Type |
Description |
| int |
The bin number of the test run. |
property bin_description
Get the bin description of the test run this data table row represents.
Returns
| Type |
Description |
| str |
The bin description of the test run. |
property column_count
Get the count of columns this row has.
Returns
| Type |
Description |
| int |
The count of the columns this row has. |
property columns
Gets the list of the DataValues for each parameter of the test.
Returns
| Type |
Description |
| DataValue |
The list of data values, one for each parameter. |
property measurement_channel
Gets the index of the channel the data in this row was measured with.
Returns
| Type |
Description |
| int |
The index of the channel the data in this row was measured with. |
property measurement_index
Gets the index of the measurement run this data row was recorded.
Returns
| Type |
Description |
| int |
The index of the measurement run this data row was recorded. |
property pin_name
Gets the name of the pin that was tested.
Returns
| Type |
Description |
| str |
The name of the pin that was tested. |
property site_column
Gets the column index of the tested site.
Returns
| Type |
Description |
| int |
The column index of the tested site. |
property site_row
Gets the row index of the tested site.
Returns
| Type |
Description |
| int |
The row index of the tested site. |
property subsite_index
Gets the index of the tested subsite.
Returns
| Type |
Description |
| int |
The index of the tested subsite. |
property subsite_label
Gets the label of the tested subsite.
Returns
| Type |
Description |
| str |
The label of the tested subsite. |
method get_bool(parameter_name: str)
Returns the value in case it is of type bool for the given parameter name.
Parameters
| Name |
Description |
| parameter_name |
The name of the parameter |
Returns
| Type |
Description |
| float |
The data value as bool for the given parameter name. |
method get_bool_by_index(parameter_index: int)
Returns the value in case it is of type bool for the given parameter index.
Parameters
| Name |
Description |
| parameter_index |
The index of the parameter |
Returns
| Type |
Description |
| float |
The data value as bool for the given parameter index. |
method get_data_value(System.String)
Gets the data value for the given parameter name.
Returns
| Type |
Description |
| DataValue |
The data value for the given parameter name. |
method get_data_value_by_index(System.Int32)
Gets the data value for the given parameter index.
Returns
| Type |
Description |
| DataValue |
The data value for the given parameter index. |
method get_float(parameter_name: str)
Returns the value in case it is of float for the given parameter name.
Parameters
| Name |
Description |
| parameter_name |
The name of the parameter |
Returns
| Type |
Description |
| float |
The data value as float for the given parameter name. |
method get_float_array(parameter_name: str)
Returns the value in case it is of type array of float for the given parameter name.
Parameters
| Name |
Description |
| parameter_name |
The name of the parameter |
Returns
| Type |
Description |
| float |
The data value as array of float for the given parameter name. |
method get_float_array_by_index(parameter_index: int)
Returns the value in case it is of type array of float for the given parameter index.
Parameters
| Name |
Description |
| parameter_index |
The index the parameter |
Returns
| Type |
Description |
| float |
The data value as array of float for the given parameter index. |
method get_float_by_index(parameter_index: int)
Returns the value in case it is of float for the given parameter index.
Parameters
| Name |
Description |
| parameter_index |
The index of the parameter |
Returns
| Type |
Description |
| float |
The data value as float for the given parameter index. |
method get_string(parameter_name: str)
Returns the value in case it is of type string for the given parameter name.
Parameters
| Name |
Description |
| parameter_name |
The name of the parameter |
Returns
| Type |
Description |
| float |
The data value as string for the given parameter name. |
method get_string_by_index(parameter_index: int)
Returns the value in case it is of type string for the given parameter index.
Parameters
| Name |
Description |
| parameter_index |
The index of the parameter |
Returns
| Type |
Description |
| float |
The data value as string for the given parameter index. |