defac: Convert a factor to a character string safely

View source: R/defac.R

defacR Documentation

Convert a factor to a character string safely

Description

This is a shortcut function to convert a factor to a character variable without having to type as.character()

Usage

defac(x)

Arguments

x

a factor to be turned into a character

Value

A character

Author(s)

Jared E. Knowles

See Also

factor, levels to understand the R implementation of factors.

Examples

a <- as.factor(LETTERS)
summary(a)
b <- defac(a)
class(b)


eeptools documentation built on June 7, 2023, 5:06 p.m.