tanklist(scuba)
tanklist()所属R语言包:scuba
Extract or Change the Breathing Gas Tanks in a Dive
提取或更改在潜水呼吸气体罐
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Extracts or modifies the list of breathing gases in a dive object.
提取或修改了该列表中的呼吸气体的潜水对象。
用法----------Usage----------
tanklist(d)
tanklist(d) <- value
参数----------Arguments----------
参数:d
The dive (an object of class "dive").
潜水(一个类的对象"dive"“)。
参数:value
The new tank list. A list, whose entries are gases (objects of class "gas")
新罐名单。的名单,是气体的项目(对象类"gas")
Details
详细信息----------Details----------
An object of class "dive" represents a scuba dive, including information about depth, time and gas breathed at each stage of the dive. These objects are created by the function dive.
一个对象的类"dive"的代表潜水,包括深度信息,在每个阶段的潜水时间和气体吸入。创建这些对象的功能dive。
The tank list of a dive object is a list of the tanks of breathing gas that were used (or available to be used) during the dive. The function tanklist returns this list.
潜水对象列表的罐是使用(或可被使用)在潜水期间的呼吸气体的坦克的列表。函数tanklist返回此列表。
If a new value is assigned to the tank list of a dive d, then d is changed. The new dive d is conducted to the same depths and times as the old d, but with different gases.
如果一个新的值被分配给一个潜水d罐列表,然后d被改变。的新的潜水d进行相同的深度和时间为旧的d,但使用不同的气体。
值----------Value----------
The value of tanklist(d) is a list whose elements are gases (objects of class "gas").
tanklist(d)是一个列表,其元素是气体(类的对象"gas")。
(作者)----------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----------
dive, nitrox
dive,nitrox
实例----------Examples----------
d <- dive(air, c(30,4), 5, nitrox(0.5), c(5,10))
d
tanklist(d)
tanklist(d) <- list(air, nitrox(0.8))
d
tanklist(d) <- list(travel=air, deco=nitrox(0.8))
d
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|