as.numeric.english {english}R Documentation

Convert an english object back to class numeric

Description

This a convenience function that simply removes the S3 class attribute from and object of class english.

Usage

## S3 method for class 'english'
as.numeric(x, ...)

Arguments

x

An object of class english.

...

Currently unused.

Value

An object of class numeric.

Author(s)

John Fox and Bill Venables.

References

See original note by John Fox in the Programmers Niche section of https://cran.r-project.org/doc/Rnews/Rnews_2005-1.pdf.

See Also

english, as.english.

Examples

(x <- english(1:10))
as.numeric(x)

[Package english version 1.1-2 Index]