powered by
One Hot Encoding with Error machine
one_hot_errormachine(Z, size = NULL)
Z a matrix N x K One-Hot-Encoded by rows, where K is the number of clusters.
a vector of size N, where Z[i] value indicate the cluster membership of observation i.
optional parameter, indicating the number of classes (avoid some empty class problems).
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