| NMFConsensusMatrixAlg(DataFrame, IEnumerableString, Int32, Int32) Constructor |
Constructs a NFMConsensusMatrix instance from the given data.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public NMFConsensusMatrix(
DataFrame data,
IEnumerable<string> columnLabels,
int k,
int numberOfRuns
)
Public Sub New (
data As DataFrame,
columnLabels As IEnumerable(Of String),
k As Integer,
numberOfRuns As Integer
)
public:
NMFConsensusMatrix(
DataFrame^ data,
IEnumerable<String^>^ columnLabels,
int k,
int numberOfRuns
)
new :
data : DataFrame *
columnLabels : IEnumerable<string> *
k : int *
numberOfRuns : int -> NMFConsensusMatrix
Parameters
- data DataFrame
- The data to factor.
- columnLabels IEnumerableString
- Matrix column labels.
- k Int32
- The order of the NMF factorization.
- numberOfRuns Int32
- The number of clustering runs.
See Also