Learn R Programming

mdir (version 0.9.0)

checkFixedInput: Check fixed input

Description

Checks if the ``fixed`` input for ``callMDI`` has the expected properties.

Usage

checkFixedInput(fixed, N, V)

Value

No return value, called for side effects.

Arguments

fixed

$N x V$ matrix indicating which labels are observed and hence fixed. If the vth column has no 1's then this view is unsupervised.

N

The number of items being clustered.

V

The number of views being modelled.

Examples

Run this code
N <- 100
V <- 3
fixed <- matrix(0, N, V)
checkFixedInput(fixed, N, V)

Run the code above in your browser using DataLab