one_hot2factor: Convert one-hot encoded matrix to factor

View source: R/preprocess.R

one_hot2factorR Documentation

Convert one-hot encoded matrix to factor

Description

Convert one-hot encoded matrix to factor

Usage

one_hot2factor(x, labels = colnames(x))

Arguments

x

one-hot encoded matrix or data.frame.

labels

Character vector of level names.

Details

If input has a single column, it will be converted to factor and returned

Value

A factor.

Author(s)

EDG

Examples

## Not run: 
x <- data.frame(matrix(F, 10, 3))
colnames(x) <- c("Dx1", "Dx2", "Dx3")
x$Dx1[1:3] <- x$Dx2[4:6] <- x$Dx3[7:10] <- T
one_hot2factor(x)

## End(Not run)


egenn/rtemis documentation built on June 14, 2025, 11:54 p.m.