depths.dive(scuba)
depths.dive()所属R语言包:scuba
Depths at each waypoint of a dive
在每个航点潜水的深度
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Extracts, or alters, the depth at each waypoint during a dive.
提取物,或改变,在潜水过程中的每一个航路点的深度。
用法----------Usage----------
depths.dive(d)
depths.dive(d) <- value
参数----------Arguments----------
参数:d
A dive (object of class "dive").
潜水(类的对象"dive"“)。
参数:value
A numeric vector containing depths in metres.
包含在米深处的一个数值向量。
Details
详细信息----------Details----------
An object of class "dive" represents a scuba dive profile. It is created by the function dive. A dive is defined as a series of waypoints occurring at specified depths and times. The depth at each waypoint is returned by depths.dive. The assignment depths.dive(d) <- value alters these depths, provided the new vector value has the same length as the old one.
一个对象的类"dive"的代表水肺潜水个人资料。它是由函数dive。甲潜水被定义为在指定的深度和时间发生了一系列的航点。在每个航点的深度返回depths.dive。赋值depths.dive(d) <- value改变这些深度,提供了新的向量value旧的一个具有相同的长度。
值----------Value----------
depths.dive returns a numeric vector containing the depths at each waypoint, in metres.
depths.dive返回一个数字向量的深处,在每一个航点,以米为单位。
(作者)----------Author(s)----------
Adrian Baddeley
<a href="mailto:Adrian.Baddeley@csiro.au">Adrian.Baddeley@csiro.au</a>
<a href="http://www.maths.uwa.edu.au/~adrian/">http://www.maths.uwa.edu.au/~adrian/</a>
参见----------See Also----------
times.dive, durations.dive, dive.
times.dive,durations.dive,dive。
实例----------Examples----------
d <- dive(c(30,20), c(5,5))
d
depths.dive(d)
# what if we had dived to 35 metres?[如果我们潜至35米呢?]
depths.dive(d)[2:3] <- 35
d
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|