nofactors {wildcard}R Documentation

Function nofactors

Description

Turn all the factors of a data frame into characters.

Usage

nofactors(df)

Arguments

df

data frame

See Also

wildcard

Examples

class(iris$Species)
str(iris)
out <- nofactors(iris)
class(out$Species)
str(out)

[Package wildcard version 1.1.0 Index]