 | KruskalWallisTestGetGroupRanks(Object) Method |
Returns the ranks for the specified group.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DoubleVector GetGroupRanks(
Object groupName
)
Public Function GetGroupRanks (
groupName As Object
) As DoubleVector
public:
DoubleVector^ GetGroupRanks(
Object^ groupName
)
member GetGroupRanks :
groupName : Object -> DoubleVector Parameters
- groupName Object
- A group name.
Return Value
DoubleVectorThe overall ranks for the observations in group
groupName.
RemarksThe array of group names can be accessed using the GroupNames
property. If this test object was constructed from a data frame using a grouping column, the
group names are the sorted, unique Factor levels created from the column values.
If this test object was constructed from a matrix or an array of vectors, the group names
are simply Group_0, Group_1...Group_n.
See Also