当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R xyVector 构造一个 xyVector 对象


R语言 xyVector 位于 splines 包(package)。

说明

创建一个对象来表示一组 x-y 对。生成的对象可以被视为矩阵或 DataFrame 或向量。当被视为向量时,它仅简化为 y 组件。

predict.spline 等函数的结果作为 xyVector 对象返回,因此用于生成 y-positions 的 x-values 被保留,例如用于生成绘图。

用法

xyVector(x, y)

参数

x

数值向量

y

x 长度相同的数值向量

带有组件的 xyVector 类的对象

x

数值向量

y

x 长度相同的数值向量

例子

require(stats); require(graphics)
ispl <- interpSpline( weight ~ height, women )
weights <- predict( ispl, seq( 55, 75, length.out = 51 ))
class( weights )
plot( weights, type = "l", xlab = "height", ylab = "weight" )
points( women$height, women$weight )
weights

作者

Douglas Bates and Bill Venables

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Construct an xyVector Object。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。