Returns all the data in a cell, as defined by the levels of the two factors in the ANOVA.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public DFNumericColumn GetCellData(
	string factorAName,
	Object factorALevel,
	string factorBName,
	Object factorBLevel
)
Visual Basic (Declaration)
Public Function GetCellData ( _
	factorAName As String, _
	factorALevel As Object, _
	factorBName As String, _
	factorBLevel As Object _
) As DFNumericColumn
Visual C++
public:
DFNumericColumn^ GetCellData(
	String^ factorAName, 
	Object^ factorALevel, 
	String^ factorBName, 
	Object^ factorBLevel
)

Parameters

factorAName
Type: System..::.String
The name of the first factor.
factorALevel
Type: System..::.Object
The level for the first factor.
factorBName
Type: System..::.String
The name of the second factor.
factorBLevel
Type: System..::.Object
The level for the second factor.

Return Value

The data in the specified cell. A copy of the data is returned as a DFNumericColumn.

See Also