sienaCompositionChange(RSiena)
sienaCompositionChange()所属R语言包:RSiena
Functions to create a Siena composition change object
函数来创建一个锡耶纳成分的变化对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Used to create a list of events describing the changes over time of a Siena actor set
用于创建一个事件描述的变化,随着时间的推移锡耶纳演员集列表
用法----------Usage----------
sienaCompositionChange(changelist, nodeSet = "Actors", option = 1)
sienaCompositionChangeFromFile(filename, nodeSet = "Actors",
fileobj=NULL, option = 1)
参数----------Arguments----------
参数:changelist
A list with an entry for each actor in the node set. Each entry a vector of numbers (may be as characters) indicating intervals during which the corresponding actor was present.
集合中的节点与每个演员的条目列表。每个条目的数字(字符)的向量表示的时间间隔,在此期间,相应的演员是目前。
参数:filename
Name of file containing change information. One line per actor, each line a series of space delimited numbers indicating intervals.
名称的文件,其中包含的变化信息。一个演员,每行每行了一系列的空间分隔的数字表明间隔。
参数:fileobj
The result of readLines on filename.
readLines文件名的结果。
参数:nodeSet
Character string containing the name of a Siena node set.
字符串,其中包含一个的锡耶纳节点集的名称。
参数:option
Integer controlling the processing of the network entries for the actors not currently present. Values (default is 1) <table summary="Rd table"> <tr> <td align="right"> 1 </td><td align="left"> 0 before entry, final value carried forward after leaving</td> </tr> <tr> <td align="right"> 2 </td><td align="left"> 0 before entry, missing after (final value carried forward, but treated as missing) </td> </tr> <tr> <td align="right"> 3 </td><td align="left"> missing whenever not in the network. Previous values will be used where available, but </td> </tr> <tr> <td align="right"> </td><td align="left"> always treated as missing values.</td> </tr> <tr> <td align="right"> 4 </td><td align="left"> Convert to structural zeros (not available at present). </td> </tr> </table>
整数的处理控制的演员不是目前的网络条目。值(默认为1)表summary="Rd table"> <TR> <td align="right"> 1 </ TD> <TD ALIGN="LEFT"> 0入学前,最后的价值结转后离开/ TD> </ TR> <TR> <td align="right"> 2 </ TD> <TD ALIGN="LEFT"> 0入学前,后失踪(终值结转,但被视为缺失)</ TD> </ TR> <TR> <td align="right"> 3 </ TD> <TD ALIGN="LEFT">失踪时,没有在网络上。如果有的话,将使用以前的值,但</ TD> </ TR> <TR> <td align="right"> </ TD> <TD ALIGN="LEFT">始终被视为缺失值的。</ TD> </ TR> <TR> <td align="right"> </ TD> <TD ALIGN="LEFT">转换到的结构零(不提供)。 </ TD> </ TR> </ TABLE>
Details
详细信息----------Details----------
Intervals are treated as closed at each end.
间隔被视为封闭在每年年底。
值----------Value----------
An object of class "compositionChange", a list of numeric vectors, with attributes:
一个对象的类的“compositionChange”,列表中的数字向量,属性:
参数:NodeSet
Name of node set
节点集的名称
参数:Option
Option
选项
(作者)----------Author(s)----------
Ruth Ripley
参考文献----------References----------
<h3>See Also</h3> <code>sienaNodeSet</code>
实例----------Examples----------
clist <- list(c(1, 3), c(1.4, 2.5))
#or[或]
clist <- list(c('1', '3'), c('1.4', '2.5'))
compChange <- sienaCompositionChange(clist)
## Not run: filedata <- c("1 3", "1.4 2.5")[#不运行:Filedata上 - C(“1”,“1.4 2.5”)]
write.table(filedata, "cc.dat",row.names=FALSE, col.names=FALSE,
quote=FALSE)
## file will be[#文件将被]
## 1 3[#1 3]
## 1.4 2.5[#1.4 2.5]
compChange <- sienaCompositionChangeFromFile("cc.dat")
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|