FrameTableAddRowT(IReadOnlyListT) Method

Adds a new row of data to the frame.

Definition

Namespace: Meta.Numerics.Data
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public void AddRow<T>(
	IReadOnlyList<T> values
)

Parameters

values  IReadOnlyListT
The values to add to each column.

Type Parameters

T
The type of the data collection.

Remarks

Use this overload when the data types are uniform across all columns.

Exceptions

DimensionMismatchExceptionThe number of items in values not equal the number of columns in the table.

See Also