Learn R Programming

mimiSBM (version 0.0.1.3)

one_hot_errormachine: One Hot Encoding with Error machine

Description

One Hot Encoding with Error machine

Usage

one_hot_errormachine(Z, size = NULL)

Value

Z a matrix N x K One-Hot-Encoded by rows, where K is the number of clusters.

Arguments

Z

a vector of size N, where Z[i] value indicate the cluster membership of observation i.

size

optional parameter, indicating the number of classes (avoid some empty class problems).

Examples

Run this code
Z <- sample(1:4,10,replace=TRUE)
Z_OHE <- one_hot_errormachine(Z)
print(Z_OHE)

Run the code above in your browser using DataLab