Click or drag to resize

StatisticsDoStatisticsOnColumns(DataColumnCollection, IAscendingIntegerCollection, IAscendingIntegerCollection, DataColumnCollection) Method

Calculates statistics of selected columns. Creates a new table where the statistical data will be written to.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void DoStatisticsOnColumns(
	this DataColumnCollection srctable,
	IAscendingIntegerCollection? selectedColumns,
	IAscendingIntegerCollection? selectedRows,
	DataColumnCollection destinationTable
)

Parameters

srctable  DataColumnCollection
Source table.
selectedColumns  IAscendingIntegerCollection
Selected data columns in the source table. If the argument is null, all columns will be used.
selectedRows  IAscendingIntegerCollection
Selected rows in the source table. If the argument is null, all rows will be used.
destinationTable  DataColumnCollection
The table where the statistical results are written to.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type DataColumnCollection. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also