clearNames {stats} | R Documentation |
This function sets the names
attribute of object
to
NULL
and returns the object.
clearNames(object)
object |
an object that may have a names attribute |
An object similar to object
but without names.
Douglas Bates and Saikat DebRoy
lapply( women, mean ) # has a names attribute clearNames( lapply( women, mean ) ) # removes the names