This is a generic function. Methods for this function coerce objects of given classes to vectors.
这是一个通用的功能。这个给定的类,以向量的功能要挟对象的方法。
用法----------Usage----------
asVector(object)
参数----------Arguments----------
参数:object
An object.
一个对象。
Details
详情----------Details----------
Methods for vector coercion in new classes must be created for the asVector generic instead of as.vector. The as.vector function is internal and not easily extended. Currently the only class with an asVector method is the xyVector class.
必须创建为向量,在新类的胁迫方法,而不是asVectoras.vector通用。 as.vector函数内部,而不是轻易地扩展。目前只有一个asVector方法类xyVector类。
值----------Value----------
a vector
向量
作者(S)----------Author(s)----------
Douglas Bates and Bill Venables
参见----------See Also----------
xyVector
xyVector
举例----------Examples----------
require(stats)
ispl <- interpSpline( weight ~ height, women )
pred <- predict(ispl)
class(pred)
utils::str(pred)
asVector(pred)