Skip to content

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.DataTable
for row_index in range(data_table.RowCount):
    row = data_table.GetRow(row_index)
    print(row.PinName)


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 BinDescription#

Get the bin description of the test run this data table row represents.

Returns#

Type Description
string The bin description of the test run.

property ColumnCount#

Get the count of columns this row has.

Every column represents one parameter of the test. The value is the same like DataTable.ColumnCount.

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 MeasurementChannel#

Gets the index of the channel the data in this row was measured with.

Available since Measmatic 2.3.27

Returns#

Type Description
int The index of the channel the data in this row was measured with.

property MeasurementIndex#

Gets the index of the measurement run this data row was recorded.

Available since Measmatic 2.3.27

Returns#

Type Description
int The index of the measurement run this data row was recorded.

property PinName#

Gets the name of the pin that was tested.

Returns#

Type Description
string The name of the pin that was tested.

property SiteColumn#

Gets the column index of the tested site.

This only applies to on-wafer testing.

Returns#

Type Description
int The column index of the tested site.

property SiteRow#

Gets the row index of the tested site.

This only applies to on-wafer testing.

Returns#

Type Description
int The row index of the tested site.

property SubsiteIndex#

Gets the index of the tested subsite.

This only applies to on-wafer testing.

Returns#

Type Description
int The index of the tested subsite.

property SubsiteLabel#

Gets the label of the tested subsite.

This only applies to on-wafer testing.

Returns#

Type Description
string The label of the tested subsite.

method GetBool(parameterName: string)#

Returns the value in case it is of type bool for the given parameter name.

Parameters#

Name Description
parameterName The name of the parameter

Returns#

Type Description
list of float The data value as bool for the given parameter name.

method GetBool(parameterIndex: int)#

Returns the value in case it is of type bool for the given parameter index.

Parameters#

Name Description
parameterIndex The index of the parameter

Returns#

Type Description
list of float The data value as bool for the given parameter index.

method GetDataValue()#

Gets the data value for the given parameter index.

Returns#

Type Description
DataValue The data value for the given parameter index.

method GetDataValue()#

Gets the data value for the given parameter name.

Returns#

Type Description
DataValue The data value for the given parameter name.

method GetFloat(parameterName: string)#

Returns the value in case it is of float for the given parameter name.

Parameters#

Name Description
parameterName The name of the parameter

Returns#

Type Description
list of float The data value as float for the given parameter name.

method GetFloat(parameterIndex: int)#

Returns the value in case it is of float for the given parameter index.

Parameters#

Name Description
parameterIndex The index of the parameter

Returns#

Type Description
list of float The data value as float for the given parameter index.

method GetFloatArray(parameterName: string)#

Returns the value in case it is of type array of float for the given parameter name.

Parameters#

Name Description
parameterName The name of the parameter

Returns#

Type Description
list of float The data value as array of float for the given parameter name.

method GetFloatArray(parameterIndex: int)#

Returns the value in case it is of type array of float for the given parameter index.

Parameters#

Name Description
parameterIndex The index the parameter

Returns#

Type Description
list of float The data value as array of float for the given parameter index.

method GetString(parameterName: string)#

Returns the value in case it is of type string for the given parameter name.

Parameters#

Name Description
parameterName The name of the parameter

Returns#

Type Description
list of float The data value as string for the given parameter name.

method GetString(parameterIndex: int)#

Returns the value in case it is of type string for the given parameter index.

Parameters#

Name Description
parameterIndex The index of the parameter

Returns#

Type Description
list of float The data value as string for the given parameter index.