Extract.listof(spatstat)
Extract.listof()所属R语言包:spatstat
Extract or Replace Subset of a List of Things
提取或替换子集的东西的列表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Replace a subset of a list of things.
更换的事情列出来的一个子集。
用法----------Usage----------
## S3 replacement method for class 'listof'
x[i] <- value
参数----------Arguments----------
参数:x
An object of class "listof" representing a list of things which all belong to one class.
"listof"的东西,这都属于一类的列表类的一个对象。
参数:i
Subset index. Any valid subset index in the usual R sense.
子集的索引。指数在平时的R SENSE任何有效的子集。
参数:value
Replacement value for the subset.
替换值的子集。
Details
详细信息----------Details----------
This is a subset replacement method for the class "listof".
这是类"listof"的一个子集的替换方法。
The argument x should be an object of class "listof" representing a list of things that all belong to one class.
参数x应该是一个对象类"listof"代表的东西的列表,都属于一类。
The method replaces a designated subset of x, and returns an object of class "listof".
方法的x替换一个指定的子集,并返回一个对象的类"listof"。
值----------Value----------
Another object of class "listof".
另一个对象的类"listof"。
(作者)----------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>
and Rolf Turner
<a href="mailto:r.turner@auckland.ac.nz">r.turner@auckland.ac.nz</a>
参见----------See Also----------
plot.listof, summary.listof
plot.listof,summary.listof
实例----------Examples----------
x <- list(A=runif(10), B=runif(10), C=runif(10))
class(x) <- c("listof", class(x))
x[1] <- list(A=rnorm(10))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|