| TwoWayAnovaBaseGetCellData Method |
Returns all the data in a cell, as defined by the levels of the two factors
in the ANOVA.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public DFNumericColumn GetCellData(
string factorAName,
Object factorALevel,
string factorBName,
Object factorBLevel
)
Public Function GetCellData (
factorAName As String,
factorALevel As Object,
factorBName As String,
factorBLevel As Object
) As DFNumericColumn
public:
DFNumericColumn^ GetCellData(
String^ factorAName,
Object^ factorALevel,
String^ factorBName,
Object^ factorBLevel
)
member GetCellData :
factorAName : string *
factorALevel : Object *
factorBName : string *
factorBLevel : Object -> DFNumericColumn
Parameters
- factorAName String
- The name of the first factor.
- factorALevel Object
- The level for the first factor.
- factorBName String
- The name of the second factor.
- factorBLevel Object
- The level for the second factor.
Return Value
DFNumericColumnThe data in the specified cell. A copy of the data is returned as
a DFNumericColumn.
See Also