| NMFConsensusMatrixAlg(DataFrame, IEnumerableString, Int32, Int32, NMFClusteringAlg) Constructor |
Constructs an NMFConsensusMatrix instance from the given data.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public NMFConsensusMatrix(
DataFrame data,
IEnumerable<string> columnLables,
int k,
int numberOfRuns,
NMFClustering<Alg> nmf
)
Public Sub New (
data As DataFrame,
columnLables As IEnumerable(Of String),
k As Integer,
numberOfRuns As Integer,
nmf As NMFClustering(Of Alg)
)
public:
NMFConsensusMatrix(
DataFrame^ data,
IEnumerable<String^>^ columnLables,
int k,
int numberOfRuns,
NMFClustering<Alg>^ nmf
)
new :
data : DataFrame *
columnLables : IEnumerable<string> *
k : int *
numberOfRuns : int *
nmf : NMFClustering<'Alg> -> NMFConsensusMatrix
Parameters
- data DataFrame
- The data to factor.
- columnLables IEnumerableString
- Column labels for the matrix.
- k Int32
- The order of the NMF factorization.
- numberOfRuns Int32
- The number of clustering runs.
- nmf NMFClusteringAlg
- The clustering NMF to use.
See Also