editDB(RSEIS)
editDB()所属R语言包:RSEIS
Edit Data Base
编辑数据库
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Edit, or remove items from an RSEIS data base after it has been read in.
编辑或删除项目从一个RSEIS的数据的基础上之后,它已经被读入。
用法----------Usage----------
editDB(DB, w)
pathDB(DB, path1="", path2="")
参数----------Arguments----------
参数:DB
RSEIS data base
RSEIS数据库
参数:w
vector of index items to remove
向量的索引项中删除
参数:path1
character for old path
字符老路,
参数:path2
character for new path to replace old path
字符的新路径,以取代旧的路径
Details
详细信息----------Details----------
The DB is a list. The program cycles through the elements of the list and removes all lnes that correspond to the idecies given in w.
DB是一个列表。该项目周期中的元素的列表,移除对应在w的idecies,所有lnes。
值----------Value----------
Returns a DB list
返回数据库列表
注意----------Note----------
A problem arises if the makeDB program reads in, or tries to read in files that have not data base header information. This program can eliminate these from the data base.
会出现一个问题,如果makeDB程序读入,或试图阅读文件没有头信息数据的基础上。此程序可以从该数据的基础上消除这些。
(作者)----------Author(s)----------
Jonathan M. Lees<jonathan.lees@unc.edu>
参见----------See Also----------
makeDB, infoDB
makeDB,infoDB
实例----------Examples----------
## Not run: [#不运行:]
DB = makeDB('/media/disk-1/TUNG_2010', "2010", kind=2,Iendian=1, BIGLONG=FALSE )
sw = which(DB$yr>2011)
########## remove the bad lines from the DB[#########删除从DB的坏线]
DDB = editDB(DB, -sw)
infoDB(DB)
############# to change the path names if the data[############改变的路径名称,如果数据]
## moves to a different server:[#移动到不同的服务器:]
for example:
### "/data/wadati/soju/SEISMIC_DATA/Reventador2005/rev05/SEGY/R256.01/05.256.12.24.06.9024.6"[##“/ data/wadati/soju/SEISMIC_DATA/Reventador2005/rev05/SEGY/R256.01/05.256.12.24.06.9024.6”]
### change to:[##更改为:]
### "/mnt/SEISMIC_DATA/Reventador2005/rev05/SEGY/R256.01/05.256.12.24.06.9024.6"[##“/ mnt/SEISMIC_DATA/Reventador2005/rev05/SEGY/R256.01/05.256.12.24.06.9024.6”]
path1="/data/wadati/soju"
path2="/mnt"
newDB = pathDB(DB, path1, path2 )
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|