powered by
Looks at each column in a data.frame, and converts character vector columns to factors.
factorize(df)
Returns a data.frame where every character column has been converted to a factor
a data.frame
David W. Roberts droberts@montana.edu http://ecology.msu.montana.edu/droberts/droberts.html
The function simply scans each column in a data.frame looking for character vector columns. For each character column it calls the ‘factor()’ function to convert the column to a factor.
defactorize
data(brycesite) brycesite <- defactorize(brycesite) brycesite$quad[brycesite$quad=='bp'] <- 'BP' brycesite <- factorize(brycesite)
Run the code above in your browser using DataLab