times.dive(scuba)
times.dive()所属R语言包:scuba
Elapsed times at each waypoint of a dive
在每个航点的潜水运行的时间
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Extracts, or alters, the elapsed time at each waypoint during a dive.
提取物,或改变,在潜水过程中的每一个航路点所用的时间。
用法----------Usage----------
times.dive(d)
times.dive(d) <- value
参数----------Arguments----------
参数:d
A dive (object of class "dive").
潜水(类的对象"dive"“)。
参数:value
A numeric vector containing elapsed times in minutes.
经过一个数字向量时间(分钟)。
Details
详细信息----------Details----------
An object of class "dive" represents a scuba dive. It is created by the function dive. A dive is defined as a series of waypoints occurring at specified depths and times. The elapsed time at each waypoint is returned by times.dive. The assignment times.dive(d) <- value alters these elapsed times, provided the new vector value has the same length as the old one.
一个对象的类"dive"的代表水肺潜水。它是由函数dive。甲潜水被定义为在指定的深度和时间发生了一系列的航点。在每个航点所用的时间返回times.dive。赋值times.dive(d) <- value改变这些经过时间,提供了新的向量value旧的一个具有相同的长度。
值----------Value----------
times.dive returns a numeric vector containing the elapsed times at each waypoint, in minutes.
times.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----------
depths.dive, durations.dive, dive.
depths.dive,durations.dive,dive。
实例----------Examples----------
d <- dive(c(30,20), c(5,5))
d
times.dive(d)
# stretch time by 10 percent[伸展时间10%]
times.dive(d) <- 1.1 * times.dive(d)
d
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|