one_hot_errormachine | R Documentation |
One Hot Encoding with Error machine
one_hot_errormachine(Z, size = NULL)
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). |
Z a matrix N x K One-Hot-Encoded by rows, where K is the number of clusters.
Z <- sample(1:4,10,replace=TRUE)
Z_OHE <- one_hot_errormachine(Z)
print(Z_OHE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.