kimisc (version 0.4)

ofactor-deprecated: Order-preserving factors

Description

The function ofactor() is a convenience wrapper for factor() that orders the levels as they appear in the data if the levels argument is not specified.

Usage

ofactor(x = character(), ...)

Arguments

x

A vector of data, usually taking a small number of distinct values.

...

Other arguments passed on to base::factor().

Value

A factor. See base::factor() for details.

See Also

Other deprecated functions: coalesce.na-deprecated, df_to_list-deprecated, hms.to.seconds-deprecated, kimisc-deprecated, list_to_df-deprecated, nc-deprecated, nlist-deprecated, sample.rows-deprecated, seconds.to.hms-deprecated, thisfile-deprecated, tll-deprecated, vswitch-deprecated

Examples

Run this code
# NOT RUN {
ofactor(3:1)
ofactor(9:12, exclude=11)
identical(ofactor(3:1, levels=1:3), factor(3:1))
# }

Run the code above in your browser using DataCamp Workspace